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