1   /**
2    * Copyright (c) 2000-2007 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 overwritten
37   * the next time is generated.
38   * </p>
39   *
40   * <p>
41   * This class is used by <code>com.liferay.portal.service.http.OrgGroupRoleServiceSoap</code>.
42   * </p>
43   *
44   * @author Brian Wing Shun Chan
45   *
46   * @see com.liferay.portal.service.http.OrgGroupRoleServiceSoap
47   *
48   */
49  public class OrgGroupRoleSoap implements Serializable {
50      public static OrgGroupRoleSoap toSoapModel(OrgGroupRole model) {
51          OrgGroupRoleSoap soapModel = new OrgGroupRoleSoap();
52          soapModel.setOrganizationId(model.getOrganizationId());
53          soapModel.setGroupId(model.getGroupId());
54          soapModel.setRoleId(model.getRoleId());
55  
56          return soapModel;
57      }
58  
59      public static OrgGroupRoleSoap[] toSoapModels(List models) {
60          List soapModels = new ArrayList(models.size());
61  
62          for (int i = 0; i < models.size(); i++) {
63              OrgGroupRole model = (OrgGroupRole)models.get(i);
64              soapModels.add(toSoapModel(model));
65          }
66  
67          return (OrgGroupRoleSoap[])soapModels.toArray(new OrgGroupRoleSoap[0]);
68      }
69  
70      public OrgGroupRoleSoap() {
71      }
72  
73      public OrgGroupRolePK getPrimaryKey() {
74          return new OrgGroupRolePK(_organizationId, _groupId, _roleId);
75      }
76  
77      public void setPrimaryKey(OrgGroupRolePK pk) {
78          setOrganizationId(pk.organizationId);
79          setGroupId(pk.groupId);
80          setRoleId(pk.roleId);
81      }
82  
83      public long getOrganizationId() {
84          return _organizationId;
85      }
86  
87      public void setOrganizationId(long organizationId) {
88          _organizationId = organizationId;
89      }
90  
91      public long getGroupId() {
92          return _groupId;
93      }
94  
95      public void setGroupId(long groupId) {
96          _groupId = groupId;
97      }
98  
99      public long getRoleId() {
100         return _roleId;
101     }
102 
103     public void setRoleId(long roleId) {
104         _roleId = roleId;
105     }
106 
107     private long _organizationId;
108     private long _groupId;
109     private long _roleId;
110 }