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.UserGroupRolePK;
26  
27  import java.io.Serializable;
28  
29  import java.util.ArrayList;
30  import java.util.List;
31  
32  /**
33   * <a href="UserGroupRoleSoap.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.UserGroupRoleServiceSoap}.
43   * </p>
44   *
45   * @author    Brian Wing Shun Chan
46   * @see       com.liferay.portal.service.http.UserGroupRoleServiceSoap
47   * @generated
48   */
49  public class UserGroupRoleSoap implements Serializable {
50      public static UserGroupRoleSoap toSoapModel(UserGroupRole model) {
51          UserGroupRoleSoap soapModel = new UserGroupRoleSoap();
52  
53          soapModel.setUserId(model.getUserId());
54          soapModel.setGroupId(model.getGroupId());
55          soapModel.setRoleId(model.getRoleId());
56  
57          return soapModel;
58      }
59  
60      public static UserGroupRoleSoap[] toSoapModels(UserGroupRole[] models) {
61          UserGroupRoleSoap[] soapModels = new UserGroupRoleSoap[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 UserGroupRoleSoap[][] toSoapModels(UserGroupRole[][] models) {
71          UserGroupRoleSoap[][] soapModels = null;
72  
73          if (models.length > 0) {
74              soapModels = new UserGroupRoleSoap[models.length][models[0].length];
75          }
76          else {
77              soapModels = new UserGroupRoleSoap[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 UserGroupRoleSoap[] toSoapModels(List<UserGroupRole> models) {
88          List<UserGroupRoleSoap> soapModels = new ArrayList<UserGroupRoleSoap>(models.size());
89  
90          for (UserGroupRole model : models) {
91              soapModels.add(toSoapModel(model));
92          }
93  
94          return soapModels.toArray(new UserGroupRoleSoap[soapModels.size()]);
95      }
96  
97      public UserGroupRoleSoap() {
98      }
99  
100     public UserGroupRolePK getPrimaryKey() {
101         return new UserGroupRolePK(_userId, _groupId, _roleId);
102     }
103 
104     public void setPrimaryKey(UserGroupRolePK pk) {
105         setUserId(pk.userId);
106         setGroupId(pk.groupId);
107         setRoleId(pk.roleId);
108     }
109 
110     public long getUserId() {
111         return _userId;
112     }
113 
114     public void setUserId(long userId) {
115         _userId = userId;
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 _userId;
135     private long _groupId;
136     private long _roleId;
137 }