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 WorkflowInstanceLink}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       WorkflowInstanceLink
024     * @generated
025     */
026    public class WorkflowInstanceLinkWrapper implements WorkflowInstanceLink {
027            public WorkflowInstanceLinkWrapper(
028                    WorkflowInstanceLink workflowInstanceLink) {
029                    _workflowInstanceLink = workflowInstanceLink;
030            }
031    
032            public long getPrimaryKey() {
033                    return _workflowInstanceLink.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _workflowInstanceLink.setPrimaryKey(pk);
038            }
039    
040            public long getWorkflowInstanceLinkId() {
041                    return _workflowInstanceLink.getWorkflowInstanceLinkId();
042            }
043    
044            public void setWorkflowInstanceLinkId(long workflowInstanceLinkId) {
045                    _workflowInstanceLink.setWorkflowInstanceLinkId(workflowInstanceLinkId);
046            }
047    
048            public long getGroupId() {
049                    return _workflowInstanceLink.getGroupId();
050            }
051    
052            public void setGroupId(long groupId) {
053                    _workflowInstanceLink.setGroupId(groupId);
054            }
055    
056            public long getCompanyId() {
057                    return _workflowInstanceLink.getCompanyId();
058            }
059    
060            public void setCompanyId(long companyId) {
061                    _workflowInstanceLink.setCompanyId(companyId);
062            }
063    
064            public long getUserId() {
065                    return _workflowInstanceLink.getUserId();
066            }
067    
068            public void setUserId(long userId) {
069                    _workflowInstanceLink.setUserId(userId);
070            }
071    
072            public java.lang.String getUserUuid()
073                    throws com.liferay.portal.kernel.exception.SystemException {
074                    return _workflowInstanceLink.getUserUuid();
075            }
076    
077            public void setUserUuid(java.lang.String userUuid) {
078                    _workflowInstanceLink.setUserUuid(userUuid);
079            }
080    
081            public java.lang.String getUserName() {
082                    return _workflowInstanceLink.getUserName();
083            }
084    
085            public void setUserName(java.lang.String userName) {
086                    _workflowInstanceLink.setUserName(userName);
087            }
088    
089            public java.util.Date getCreateDate() {
090                    return _workflowInstanceLink.getCreateDate();
091            }
092    
093            public void setCreateDate(java.util.Date createDate) {
094                    _workflowInstanceLink.setCreateDate(createDate);
095            }
096    
097            public java.util.Date getModifiedDate() {
098                    return _workflowInstanceLink.getModifiedDate();
099            }
100    
101            public void setModifiedDate(java.util.Date modifiedDate) {
102                    _workflowInstanceLink.setModifiedDate(modifiedDate);
103            }
104    
105            public java.lang.String getClassName() {
106                    return _workflowInstanceLink.getClassName();
107            }
108    
109            public long getClassNameId() {
110                    return _workflowInstanceLink.getClassNameId();
111            }
112    
113            public void setClassNameId(long classNameId) {
114                    _workflowInstanceLink.setClassNameId(classNameId);
115            }
116    
117            public long getClassPK() {
118                    return _workflowInstanceLink.getClassPK();
119            }
120    
121            public void setClassPK(long classPK) {
122                    _workflowInstanceLink.setClassPK(classPK);
123            }
124    
125            public long getWorkflowInstanceId() {
126                    return _workflowInstanceLink.getWorkflowInstanceId();
127            }
128    
129            public void setWorkflowInstanceId(long workflowInstanceId) {
130                    _workflowInstanceLink.setWorkflowInstanceId(workflowInstanceId);
131            }
132    
133            public com.liferay.portal.model.WorkflowInstanceLink toEscapedModel() {
134                    return _workflowInstanceLink.toEscapedModel();
135            }
136    
137            public boolean isNew() {
138                    return _workflowInstanceLink.isNew();
139            }
140    
141            public void setNew(boolean n) {
142                    _workflowInstanceLink.setNew(n);
143            }
144    
145            public boolean isCachedModel() {
146                    return _workflowInstanceLink.isCachedModel();
147            }
148    
149            public void setCachedModel(boolean cachedModel) {
150                    _workflowInstanceLink.setCachedModel(cachedModel);
151            }
152    
153            public boolean isEscapedModel() {
154                    return _workflowInstanceLink.isEscapedModel();
155            }
156    
157            public void setEscapedModel(boolean escapedModel) {
158                    _workflowInstanceLink.setEscapedModel(escapedModel);
159            }
160    
161            public java.io.Serializable getPrimaryKeyObj() {
162                    return _workflowInstanceLink.getPrimaryKeyObj();
163            }
164    
165            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
166                    return _workflowInstanceLink.getExpandoBridge();
167            }
168    
169            public void setExpandoBridgeAttributes(
170                    com.liferay.portal.service.ServiceContext serviceContext) {
171                    _workflowInstanceLink.setExpandoBridgeAttributes(serviceContext);
172            }
173    
174            public java.lang.Object clone() {
175                    return _workflowInstanceLink.clone();
176            }
177    
178            public int compareTo(
179                    com.liferay.portal.model.WorkflowInstanceLink workflowInstanceLink) {
180                    return _workflowInstanceLink.compareTo(workflowInstanceLink);
181            }
182    
183            public int hashCode() {
184                    return _workflowInstanceLink.hashCode();
185            }
186    
187            public java.lang.String toString() {
188                    return _workflowInstanceLink.toString();
189            }
190    
191            public java.lang.String toXmlString() {
192                    return _workflowInstanceLink.toXmlString();
193            }
194    
195            public WorkflowInstanceLink getWrappedWorkflowInstanceLink() {
196                    return _workflowInstanceLink;
197            }
198    
199            private WorkflowInstanceLink _workflowInstanceLink;
200    }