1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions 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   * <code>com.liferay.portal.service.http.OrgGroupRoleServiceSoap</code>.
43   * </p>
44   *
45   * @author Brian Wing Shun Chan
46   *
47   * @see com.liferay.portal.service.http.OrgGroupRoleServiceSoap
48   *
49   */
50  public class OrgGroupRoleSoap implements Serializable {
51      public static OrgGroupRoleSoap toSoapModel(OrgGroupRole model) {
52          OrgGroupRoleSoap soapModel = new OrgGroupRoleSoap();
53  
54          soapModel.setOrganizationId(model.getOrganizationId());
55          soapModel.setGroupId(model.getGroupId());
56          soapModel.setRoleId(model.getRoleId());
57  
58          return soapModel;
59      }
60  
61      public static OrgGroupRoleSoap[] toSoapModels(OrgGroupRole[] models) {
62          OrgGroupRoleSoap[] soapModels = new OrgGroupRoleSoap[models.length];
63  
64          for (int i = 0; i < models.length; i++) {
65              soapModels[i] = toSoapModel(models[i]);
66          }
67  
68          return soapModels;
69      }
70  
71      public static OrgGroupRoleSoap[][] toSoapModels(OrgGroupRole[][] models) {
72          OrgGroupRoleSoap[][] soapModels = null;
73  
74          if (models.length > 0) {
75              soapModels = new OrgGroupRoleSoap[models.length][models[0].length];
76          }
77          else {
78              soapModels = new OrgGroupRoleSoap[0][0];
79          }
80  
81          for (int i = 0; i < models.length; i++) {
82              soapModels[i] = toSoapModels(models[i]);
83          }
84  
85          return soapModels;
86      }
87  
88      public static OrgGroupRoleSoap[] toSoapModels(List<OrgGroupRole> models) {
89          List<OrgGroupRoleSoap> soapModels = new ArrayList<OrgGroupRoleSoap>(models.size());
90  
91          for (OrgGroupRole model : models) {
92              soapModels.add(toSoapModel(model));
93          }
94  
95          return soapModels.toArray(new OrgGroupRoleSoap[soapModels.size()]);
96      }
97  
98      public OrgGroupRoleSoap() {
99      }
100 
101     public OrgGroupRolePK getPrimaryKey() {
102         return new OrgGroupRolePK(_organizationId, _groupId, _roleId);
103     }
104 
105     public void setPrimaryKey(OrgGroupRolePK pk) {
106         setOrganizationId(pk.organizationId);
107         setGroupId(pk.groupId);
108         setRoleId(pk.roleId);
109     }
110 
111     public long getOrganizationId() {
112         return _organizationId;
113     }
114 
115     public void setOrganizationId(long organizationId) {
116         _organizationId = organizationId;
117     }
118 
119     public long getGroupId() {
120         return _groupId;
121     }
122 
123     public void setGroupId(long groupId) {
124         _groupId = groupId;
125     }
126 
127     public long getRoleId() {
128         return _roleId;
129     }
130 
131     public void setRoleId(long roleId) {
132         _roleId = roleId;
133     }
134 
135     private long _organizationId;
136     private long _groupId;
137     private long _roleId;
138 }