001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    import java.io.Serializable;
018    
019    import java.util.ArrayList;
020    import java.util.List;
021    
022    /**
023     * This class is used by SOAP remote services.
024     *
025     * @author    Brian Wing Shun Chan
026     * @generated
027     */
028    public class ResourceActionSoap implements Serializable {
029            public static ResourceActionSoap toSoapModel(ResourceAction model) {
030                    ResourceActionSoap soapModel = new ResourceActionSoap();
031    
032                    soapModel.setResourceActionId(model.getResourceActionId());
033                    soapModel.setName(model.getName());
034                    soapModel.setActionId(model.getActionId());
035                    soapModel.setBitwiseValue(model.getBitwiseValue());
036    
037                    return soapModel;
038            }
039    
040            public static ResourceActionSoap[] toSoapModels(ResourceAction[] models) {
041                    ResourceActionSoap[] soapModels = new ResourceActionSoap[models.length];
042    
043                    for (int i = 0; i < models.length; i++) {
044                            soapModels[i] = toSoapModel(models[i]);
045                    }
046    
047                    return soapModels;
048            }
049    
050            public static ResourceActionSoap[][] toSoapModels(ResourceAction[][] models) {
051                    ResourceActionSoap[][] soapModels = null;
052    
053                    if (models.length > 0) {
054                            soapModels = new ResourceActionSoap[models.length][models[0].length];
055                    }
056                    else {
057                            soapModels = new ResourceActionSoap[0][0];
058                    }
059    
060                    for (int i = 0; i < models.length; i++) {
061                            soapModels[i] = toSoapModels(models[i]);
062                    }
063    
064                    return soapModels;
065            }
066    
067            public static ResourceActionSoap[] toSoapModels(List<ResourceAction> models) {
068                    List<ResourceActionSoap> soapModels = new ArrayList<ResourceActionSoap>(models.size());
069    
070                    for (ResourceAction model : models) {
071                            soapModels.add(toSoapModel(model));
072                    }
073    
074                    return soapModels.toArray(new ResourceActionSoap[soapModels.size()]);
075            }
076    
077            public ResourceActionSoap() {
078            }
079    
080            public long getPrimaryKey() {
081                    return _resourceActionId;
082            }
083    
084            public void setPrimaryKey(long pk) {
085                    setResourceActionId(pk);
086            }
087    
088            public long getResourceActionId() {
089                    return _resourceActionId;
090            }
091    
092            public void setResourceActionId(long resourceActionId) {
093                    _resourceActionId = resourceActionId;
094            }
095    
096            public String getName() {
097                    return _name;
098            }
099    
100            public void setName(String name) {
101                    _name = name;
102            }
103    
104            public String getActionId() {
105                    return _actionId;
106            }
107    
108            public void setActionId(String actionId) {
109                    _actionId = actionId;
110            }
111    
112            public long getBitwiseValue() {
113                    return _bitwiseValue;
114            }
115    
116            public void setBitwiseValue(long bitwiseValue) {
117                    _bitwiseValue = bitwiseValue;
118            }
119    
120            private long _resourceActionId;
121            private String _name;
122            private String _actionId;
123            private long _bitwiseValue;
124    }