1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.model;
16  
17  
18  /**
19   * <a href="GroupSoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link Group}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       Group
32   * @generated
33   */
34  public class GroupWrapper implements Group {
35      public GroupWrapper(Group group) {
36          _group = group;
37      }
38  
39      public long getPrimaryKey() {
40          return _group.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _group.setPrimaryKey(pk);
45      }
46  
47      public long getGroupId() {
48          return _group.getGroupId();
49      }
50  
51      public void setGroupId(long groupId) {
52          _group.setGroupId(groupId);
53      }
54  
55      public long getCompanyId() {
56          return _group.getCompanyId();
57      }
58  
59      public void setCompanyId(long companyId) {
60          _group.setCompanyId(companyId);
61      }
62  
63      public long getCreatorUserId() {
64          return _group.getCreatorUserId();
65      }
66  
67      public void setCreatorUserId(long creatorUserId) {
68          _group.setCreatorUserId(creatorUserId);
69      }
70  
71      public java.lang.String getCreatorUserUuid()
72          throws com.liferay.portal.SystemException {
73          return _group.getCreatorUserUuid();
74      }
75  
76      public void setCreatorUserUuid(java.lang.String creatorUserUuid) {
77          _group.setCreatorUserUuid(creatorUserUuid);
78      }
79  
80      public java.lang.String getClassName() {
81          return _group.getClassName();
82      }
83  
84      public long getClassNameId() {
85          return _group.getClassNameId();
86      }
87  
88      public void setClassNameId(long classNameId) {
89          _group.setClassNameId(classNameId);
90      }
91  
92      public long getClassPK() {
93          return _group.getClassPK();
94      }
95  
96      public void setClassPK(long classPK) {
97          _group.setClassPK(classPK);
98      }
99  
100     public long getParentGroupId() {
101         return _group.getParentGroupId();
102     }
103 
104     public void setParentGroupId(long parentGroupId) {
105         _group.setParentGroupId(parentGroupId);
106     }
107 
108     public long getLiveGroupId() {
109         return _group.getLiveGroupId();
110     }
111 
112     public void setLiveGroupId(long liveGroupId) {
113         _group.setLiveGroupId(liveGroupId);
114     }
115 
116     public java.lang.String getName() {
117         return _group.getName();
118     }
119 
120     public void setName(java.lang.String name) {
121         _group.setName(name);
122     }
123 
124     public java.lang.String getDescription() {
125         return _group.getDescription();
126     }
127 
128     public void setDescription(java.lang.String description) {
129         _group.setDescription(description);
130     }
131 
132     public int getType() {
133         return _group.getType();
134     }
135 
136     public void setType(int type) {
137         _group.setType(type);
138     }
139 
140     public java.lang.String getTypeSettings() {
141         return _group.getTypeSettings();
142     }
143 
144     public void setTypeSettings(java.lang.String typeSettings) {
145         _group.setTypeSettings(typeSettings);
146     }
147 
148     public java.lang.String getFriendlyURL() {
149         return _group.getFriendlyURL();
150     }
151 
152     public void setFriendlyURL(java.lang.String friendlyURL) {
153         _group.setFriendlyURL(friendlyURL);
154     }
155 
156     public boolean getActive() {
157         return _group.getActive();
158     }
159 
160     public boolean isActive() {
161         return _group.isActive();
162     }
163 
164     public void setActive(boolean active) {
165         _group.setActive(active);
166     }
167 
168     public com.liferay.portal.model.Group toEscapedModel() {
169         return _group.toEscapedModel();
170     }
171 
172     public boolean isNew() {
173         return _group.isNew();
174     }
175 
176     public boolean setNew(boolean n) {
177         return _group.setNew(n);
178     }
179 
180     public boolean isCachedModel() {
181         return _group.isCachedModel();
182     }
183 
184     public void setCachedModel(boolean cachedModel) {
185         _group.setCachedModel(cachedModel);
186     }
187 
188     public boolean isEscapedModel() {
189         return _group.isEscapedModel();
190     }
191 
192     public void setEscapedModel(boolean escapedModel) {
193         _group.setEscapedModel(escapedModel);
194     }
195 
196     public java.io.Serializable getPrimaryKeyObj() {
197         return _group.getPrimaryKeyObj();
198     }
199 
200     public java.lang.Object clone() {
201         return _group.clone();
202     }
203 
204     public int compareTo(com.liferay.portal.model.Group group) {
205         return _group.compareTo(group);
206     }
207 
208     public int hashCode() {
209         return _group.hashCode();
210     }
211 
212     public java.lang.String toString() {
213         return _group.toString();
214     }
215 
216     public java.lang.String toXmlString() {
217         return _group.toXmlString();
218     }
219 
220     public boolean isCommunity() {
221         return _group.isCommunity();
222     }
223 
224     public boolean isLayout() {
225         return _group.isLayout();
226     }
227 
228     public boolean isOrganization() {
229         return _group.isOrganization();
230     }
231 
232     public boolean isUser() {
233         return _group.isUser();
234     }
235 
236     public boolean isUserGroup() {
237         return _group.isUserGroup();
238     }
239 
240     public com.liferay.portal.model.Group getLiveGroup() {
241         return _group.getLiveGroup();
242     }
243 
244     public com.liferay.portal.model.Group getStagingGroup() {
245         return _group.getStagingGroup();
246     }
247 
248     public boolean hasStagingGroup() {
249         return _group.hasStagingGroup();
250     }
251 
252     public boolean isStagingGroup() {
253         return _group.isStagingGroup();
254     }
255 
256     public java.lang.String getDescriptiveName() {
257         return _group.getDescriptiveName();
258     }
259 
260     public java.lang.String getTypeLabel() {
261         return _group.getTypeLabel();
262     }
263 
264     public com.liferay.portal.kernel.util.UnicodeProperties getTypeSettingsProperties() {
265         return _group.getTypeSettingsProperties();
266     }
267 
268     public void setTypeSettingsProperties(
269         com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties) {
270         _group.setTypeSettingsProperties(typeSettingsProperties);
271     }
272 
273     public java.lang.String getTypeSettingsProperty(java.lang.String key) {
274         return _group.getTypeSettingsProperty(key);
275     }
276 
277     public java.lang.String getPathFriendlyURL(boolean privateLayout,
278         com.liferay.portal.theme.ThemeDisplay themeDisplay) {
279         return _group.getPathFriendlyURL(privateLayout, themeDisplay);
280     }
281 
282     public long getDefaultPrivatePlid() {
283         return _group.getDefaultPrivatePlid();
284     }
285 
286     public int getPrivateLayoutsPageCount() {
287         return _group.getPrivateLayoutsPageCount();
288     }
289 
290     public boolean hasPrivateLayouts() {
291         return _group.hasPrivateLayouts();
292     }
293 
294     public long getDefaultPublicPlid() {
295         return _group.getDefaultPublicPlid();
296     }
297 
298     public int getPublicLayoutsPageCount() {
299         return _group.getPublicLayoutsPageCount();
300     }
301 
302     public boolean hasPublicLayouts() {
303         return _group.hasPublicLayouts();
304     }
305 
306     public boolean isWorkflowEnabled() {
307         return _group.isWorkflowEnabled();
308     }
309 
310     public int getWorkflowStages() {
311         return _group.getWorkflowStages();
312     }
313 
314     public java.lang.String getWorkflowRoleNames() {
315         return _group.getWorkflowRoleNames();
316     }
317 
318     public Group getWrappedGroup() {
319         return _group;
320     }
321 
322     private Group _group;
323 }