1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    *
5    *
6    *
7    * The contents of this file are subject to the terms of the Liferay Enterprise
8    * Subscription License ("License"). You may not use this file except in
9    * compliance with the License. You can obtain a copy of the License by
10   * contacting Liferay, Inc. See the License for the specific language governing
11   * permissions and limitations under the License, including but not limited to
12   * distribution rights of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portal.model;
24  
25  import com.liferay.portal.service.persistence.OrgGroupRolePK;
26  
27  import java.io.Serializable;
28  
29  import java.util.ArrayList;
30  import java.util.List;
31  
32  /**
33   * <a href="OrgGroupRoleSoap.java.html"><b><i>View Source</i></b></a>
34   *
35   * <p>
36   * ServiceBuilder generated this class. Modifications in this class will be
37   * overwritten the next time is generated.
38   * </p>
39   *
40   * <p>
41   * This class is used by
42   * {@link com.liferay.portal.service.http.OrgGroupRoleServiceSoap}.
43   * </p>
44   *
45   * @author    Brian Wing Shun Chan
46   * @see       com.liferay.portal.service.http.OrgGroupRoleServiceSoap
47   * @generated
48   */
49  public class OrgGroupRoleSoap implements Serializable {
50      public static OrgGroupRoleSoap toSoapModel(OrgGroupRole model) {
51          OrgGroupRoleSoap soapModel = new OrgGroupRoleSoap();
52  
53          soapModel.setOrganizationId(model.getOrganizationId());
54          soapModel.setGroupId(model.getGroupId());
55          soapModel.setRoleId(model.getRoleId());
56  
57          return soapModel;
58      }
59  
60      public static OrgGroupRoleSoap[] toSoapModels(OrgGroupRole[] models) {
61          OrgGroupRoleSoap[] soapModels = new OrgGroupRoleSoap[models.length];
62  
63          for (int i = 0; i < models.length; i++) {
64              soapModels[i] = toSoapModel(models[i]);
65          }
66  
67          return soapModels;
68      }
69  
70      public static OrgGroupRoleSoap[][] toSoapModels(OrgGroupRole[][] models) {
71          OrgGroupRoleSoap[][] soapModels = null;
72  
73          if (models.length > 0) {
74              soapModels = new OrgGroupRoleSoap[models.length][models[0].length];
75          }
76          else {
77              soapModels = new OrgGroupRoleSoap[0][0];
78          }
79  
80          for (int i = 0; i < models.length; i++) {
81              soapModels[i] = toSoapModels(models[i]);
82          }
83  
84          return soapModels;
85      }
86  
87      public static OrgGroupRoleSoap[] toSoapModels(List<OrgGroupRole> models) {
88          List<OrgGroupRoleSoap> soapModels = new ArrayList<OrgGroupRoleSoap>(models.size());
89  
90          for (OrgGroupRole model : models) {
91              soapModels.add(toSoapModel(model));
92          }
93  
94          return soapModels.toArray(new OrgGroupRoleSoap[soapModels.size()]);
95      }
96  
97      public OrgGroupRoleSoap() {
98      }
99  
100     public OrgGroupRolePK getPrimaryKey() {
101         return new OrgGroupRolePK(_organizationId, _groupId, _roleId);
102     }
103 
104     public void setPrimaryKey(OrgGroupRolePK pk) {
105         setOrganizationId(pk.organizationId);
106         setGroupId(pk.groupId);
107         setRoleId(pk.roleId);
108     }
109 
110     public long getOrganizationId() {
111         return _organizationId;
112     }
113 
114     public void setOrganizationId(long organizationId) {
115         _organizationId = organizationId;
116     }
117 
118     public long getGroupId() {
119         return _groupId;
120     }
121 
122     public void setGroupId(long groupId) {
123         _groupId = groupId;
124     }
125 
126     public long getRoleId() {
127         return _roleId;
128     }
129 
130     public void setRoleId(long roleId) {
131         _roleId = roleId;
132     }
133 
134     private long _organizationId;
135     private long _groupId;
136     private long _roleId;
137 }