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