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