001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    
018    /**
019     * <p>
020     * This class is a wrapper for {@link Group}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       Group
025     * @generated
026     */
027    public class GroupWrapper implements Group {
028            public GroupWrapper(Group group) {
029                    _group = group;
030            }
031    
032            public long getPrimaryKey() {
033                    return _group.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _group.setPrimaryKey(pk);
038            }
039    
040            public long getGroupId() {
041                    return _group.getGroupId();
042            }
043    
044            public void setGroupId(long groupId) {
045                    _group.setGroupId(groupId);
046            }
047    
048            public long getCompanyId() {
049                    return _group.getCompanyId();
050            }
051    
052            public void setCompanyId(long companyId) {
053                    _group.setCompanyId(companyId);
054            }
055    
056            public long getCreatorUserId() {
057                    return _group.getCreatorUserId();
058            }
059    
060            public void setCreatorUserId(long creatorUserId) {
061                    _group.setCreatorUserId(creatorUserId);
062            }
063    
064            public java.lang.String getCreatorUserUuid()
065                    throws com.liferay.portal.kernel.exception.SystemException {
066                    return _group.getCreatorUserUuid();
067            }
068    
069            public void setCreatorUserUuid(java.lang.String creatorUserUuid) {
070                    _group.setCreatorUserUuid(creatorUserUuid);
071            }
072    
073            public java.lang.String getClassName() {
074                    return _group.getClassName();
075            }
076    
077            public long getClassNameId() {
078                    return _group.getClassNameId();
079            }
080    
081            public void setClassNameId(long classNameId) {
082                    _group.setClassNameId(classNameId);
083            }
084    
085            public long getClassPK() {
086                    return _group.getClassPK();
087            }
088    
089            public void setClassPK(long classPK) {
090                    _group.setClassPK(classPK);
091            }
092    
093            public long getParentGroupId() {
094                    return _group.getParentGroupId();
095            }
096    
097            public void setParentGroupId(long parentGroupId) {
098                    _group.setParentGroupId(parentGroupId);
099            }
100    
101            public long getLiveGroupId() {
102                    return _group.getLiveGroupId();
103            }
104    
105            public void setLiveGroupId(long liveGroupId) {
106                    _group.setLiveGroupId(liveGroupId);
107            }
108    
109            public java.lang.String getName() {
110                    return _group.getName();
111            }
112    
113            public void setName(java.lang.String name) {
114                    _group.setName(name);
115            }
116    
117            public java.lang.String getDescription() {
118                    return _group.getDescription();
119            }
120    
121            public void setDescription(java.lang.String description) {
122                    _group.setDescription(description);
123            }
124    
125            public int getType() {
126                    return _group.getType();
127            }
128    
129            public void setType(int type) {
130                    _group.setType(type);
131            }
132    
133            public java.lang.String getTypeSettings() {
134                    return _group.getTypeSettings();
135            }
136    
137            public void setTypeSettings(java.lang.String typeSettings) {
138                    _group.setTypeSettings(typeSettings);
139            }
140    
141            public java.lang.String getFriendlyURL() {
142                    return _group.getFriendlyURL();
143            }
144    
145            public void setFriendlyURL(java.lang.String friendlyURL) {
146                    _group.setFriendlyURL(friendlyURL);
147            }
148    
149            public boolean getActive() {
150                    return _group.getActive();
151            }
152    
153            public boolean isActive() {
154                    return _group.isActive();
155            }
156    
157            public void setActive(boolean active) {
158                    _group.setActive(active);
159            }
160    
161            public com.liferay.portal.model.Group toEscapedModel() {
162                    return _group.toEscapedModel();
163            }
164    
165            public boolean isNew() {
166                    return _group.isNew();
167            }
168    
169            public void setNew(boolean n) {
170                    _group.setNew(n);
171            }
172    
173            public boolean isCachedModel() {
174                    return _group.isCachedModel();
175            }
176    
177            public void setCachedModel(boolean cachedModel) {
178                    _group.setCachedModel(cachedModel);
179            }
180    
181            public boolean isEscapedModel() {
182                    return _group.isEscapedModel();
183            }
184    
185            public void setEscapedModel(boolean escapedModel) {
186                    _group.setEscapedModel(escapedModel);
187            }
188    
189            public java.io.Serializable getPrimaryKeyObj() {
190                    return _group.getPrimaryKeyObj();
191            }
192    
193            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
194                    return _group.getExpandoBridge();
195            }
196    
197            public void setExpandoBridgeAttributes(
198                    com.liferay.portal.service.ServiceContext serviceContext) {
199                    _group.setExpandoBridgeAttributes(serviceContext);
200            }
201    
202            public java.lang.Object clone() {
203                    return _group.clone();
204            }
205    
206            public int compareTo(com.liferay.portal.model.Group group) {
207                    return _group.compareTo(group);
208            }
209    
210            public int hashCode() {
211                    return _group.hashCode();
212            }
213    
214            public java.lang.String toString() {
215                    return _group.toString();
216            }
217    
218            public java.lang.String toXmlString() {
219                    return _group.toXmlString();
220            }
221    
222            public long getDefaultPrivatePlid() {
223                    return _group.getDefaultPrivatePlid();
224            }
225    
226            public long getDefaultPublicPlid() {
227                    return _group.getDefaultPublicPlid();
228            }
229    
230            public java.lang.String getDescriptiveName()
231                    throws com.liferay.portal.kernel.exception.PortalException,
232                            com.liferay.portal.kernel.exception.SystemException {
233                    return _group.getDescriptiveName();
234            }
235    
236            public com.liferay.portal.model.Group getLiveGroup() {
237                    return _group.getLiveGroup();
238            }
239    
240            public java.lang.String getPathFriendlyURL(boolean privateLayout,
241                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
242                    return _group.getPathFriendlyURL(privateLayout, themeDisplay);
243            }
244    
245            public com.liferay.portal.model.LayoutSet getPrivateLayoutSet() {
246                    return _group.getPrivateLayoutSet();
247            }
248    
249            public int getPrivateLayoutsPageCount() {
250                    return _group.getPrivateLayoutsPageCount();
251            }
252    
253            public com.liferay.portal.model.LayoutSet getPublicLayoutSet() {
254                    return _group.getPublicLayoutSet();
255            }
256    
257            public int getPublicLayoutsPageCount() {
258                    return _group.getPublicLayoutsPageCount();
259            }
260    
261            public com.liferay.portal.model.Group getStagingGroup() {
262                    return _group.getStagingGroup();
263            }
264    
265            public java.lang.String getTypeLabel() {
266                    return _group.getTypeLabel();
267            }
268    
269            public com.liferay.portal.kernel.util.UnicodeProperties getTypeSettingsProperties() {
270                    return _group.getTypeSettingsProperties();
271            }
272    
273            public java.lang.String getTypeSettingsProperty(java.lang.String key) {
274                    return _group.getTypeSettingsProperty(key);
275            }
276    
277            public java.lang.String getWorkflowRoleNames() {
278                    return _group.getWorkflowRoleNames();
279            }
280    
281            public int getWorkflowStages() {
282                    return _group.getWorkflowStages();
283            }
284    
285            public boolean hasPrivateLayouts() {
286                    return _group.hasPrivateLayouts();
287            }
288    
289            public boolean hasPublicLayouts() {
290                    return _group.hasPublicLayouts();
291            }
292    
293            public boolean hasStagingGroup() {
294                    return _group.hasStagingGroup();
295            }
296    
297            public boolean isCommunity() {
298                    return _group.isCommunity();
299            }
300    
301            public boolean isCompany() {
302                    return _group.isCompany();
303            }
304    
305            public boolean isControlPanel() {
306                    return _group.isControlPanel();
307            }
308    
309            public boolean isLayout() {
310                    return _group.isLayout();
311            }
312    
313            public boolean isLayoutPrototype() {
314                    return _group.isLayoutPrototype();
315            }
316    
317            public boolean isLayoutSetPrototype() {
318                    return _group.isLayoutSetPrototype();
319            }
320    
321            public boolean isOrganization() {
322                    return _group.isOrganization();
323            }
324    
325            public boolean isStaged() {
326                    return _group.isStaged();
327            }
328    
329            public boolean isStagedPortlet(java.lang.String portletId) {
330                    return _group.isStagedPortlet(portletId);
331            }
332    
333            public boolean isStagedRemotely() {
334                    return _group.isStagedRemotely();
335            }
336    
337            public boolean isStagingGroup() {
338                    return _group.isStagingGroup();
339            }
340    
341            public boolean isUser() {
342                    return _group.isUser();
343            }
344    
345            public boolean isUserGroup() {
346                    return _group.isUserGroup();
347            }
348    
349            public boolean isWorkflowEnabled() {
350                    return _group.isWorkflowEnabled();
351            }
352    
353            public void setTypeSettingsProperties(
354                    com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties) {
355                    _group.setTypeSettingsProperties(typeSettingsProperties);
356            }
357    
358            public Group getWrappedGroup() {
359                    return _group;
360            }
361    
362            private Group _group;
363    }