1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.model;
16  
17  
18  /**
19   * <a href="WorkflowInstanceLinkSoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link WorkflowInstanceLink}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       WorkflowInstanceLink
32   * @generated
33   */
34  public class WorkflowInstanceLinkWrapper implements WorkflowInstanceLink {
35      public WorkflowInstanceLinkWrapper(
36          WorkflowInstanceLink workflowInstanceLink) {
37          _workflowInstanceLink = workflowInstanceLink;
38      }
39  
40      public long getPrimaryKey() {
41          return _workflowInstanceLink.getPrimaryKey();
42      }
43  
44      public void setPrimaryKey(long pk) {
45          _workflowInstanceLink.setPrimaryKey(pk);
46      }
47  
48      public long getWorkflowInstanceLinkId() {
49          return _workflowInstanceLink.getWorkflowInstanceLinkId();
50      }
51  
52      public void setWorkflowInstanceLinkId(long workflowInstanceLinkId) {
53          _workflowInstanceLink.setWorkflowInstanceLinkId(workflowInstanceLinkId);
54      }
55  
56      public long getGroupId() {
57          return _workflowInstanceLink.getGroupId();
58      }
59  
60      public void setGroupId(long groupId) {
61          _workflowInstanceLink.setGroupId(groupId);
62      }
63  
64      public long getCompanyId() {
65          return _workflowInstanceLink.getCompanyId();
66      }
67  
68      public void setCompanyId(long companyId) {
69          _workflowInstanceLink.setCompanyId(companyId);
70      }
71  
72      public long getUserId() {
73          return _workflowInstanceLink.getUserId();
74      }
75  
76      public void setUserId(long userId) {
77          _workflowInstanceLink.setUserId(userId);
78      }
79  
80      public java.lang.String getUserUuid()
81          throws com.liferay.portal.kernel.exception.SystemException {
82          return _workflowInstanceLink.getUserUuid();
83      }
84  
85      public void setUserUuid(java.lang.String userUuid) {
86          _workflowInstanceLink.setUserUuid(userUuid);
87      }
88  
89      public java.lang.String getUserName() {
90          return _workflowInstanceLink.getUserName();
91      }
92  
93      public void setUserName(java.lang.String userName) {
94          _workflowInstanceLink.setUserName(userName);
95      }
96  
97      public java.util.Date getCreateDate() {
98          return _workflowInstanceLink.getCreateDate();
99      }
100 
101     public void setCreateDate(java.util.Date createDate) {
102         _workflowInstanceLink.setCreateDate(createDate);
103     }
104 
105     public java.util.Date getModifiedDate() {
106         return _workflowInstanceLink.getModifiedDate();
107     }
108 
109     public void setModifiedDate(java.util.Date modifiedDate) {
110         _workflowInstanceLink.setModifiedDate(modifiedDate);
111     }
112 
113     public java.lang.String getClassName() {
114         return _workflowInstanceLink.getClassName();
115     }
116 
117     public long getClassNameId() {
118         return _workflowInstanceLink.getClassNameId();
119     }
120 
121     public void setClassNameId(long classNameId) {
122         _workflowInstanceLink.setClassNameId(classNameId);
123     }
124 
125     public long getClassPK() {
126         return _workflowInstanceLink.getClassPK();
127     }
128 
129     public void setClassPK(long classPK) {
130         _workflowInstanceLink.setClassPK(classPK);
131     }
132 
133     public long getWorkflowInstanceId() {
134         return _workflowInstanceLink.getWorkflowInstanceId();
135     }
136 
137     public void setWorkflowInstanceId(long workflowInstanceId) {
138         _workflowInstanceLink.setWorkflowInstanceId(workflowInstanceId);
139     }
140 
141     public com.liferay.portal.model.WorkflowInstanceLink toEscapedModel() {
142         return _workflowInstanceLink.toEscapedModel();
143     }
144 
145     public boolean isNew() {
146         return _workflowInstanceLink.isNew();
147     }
148 
149     public boolean setNew(boolean n) {
150         return _workflowInstanceLink.setNew(n);
151     }
152 
153     public boolean isCachedModel() {
154         return _workflowInstanceLink.isCachedModel();
155     }
156 
157     public void setCachedModel(boolean cachedModel) {
158         _workflowInstanceLink.setCachedModel(cachedModel);
159     }
160 
161     public boolean isEscapedModel() {
162         return _workflowInstanceLink.isEscapedModel();
163     }
164 
165     public void setEscapedModel(boolean escapedModel) {
166         _workflowInstanceLink.setEscapedModel(escapedModel);
167     }
168 
169     public java.io.Serializable getPrimaryKeyObj() {
170         return _workflowInstanceLink.getPrimaryKeyObj();
171     }
172 
173     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
174         return _workflowInstanceLink.getExpandoBridge();
175     }
176 
177     public void setExpandoBridgeAttributes(
178         com.liferay.portal.service.ServiceContext serviceContext) {
179         _workflowInstanceLink.setExpandoBridgeAttributes(serviceContext);
180     }
181 
182     public java.lang.Object clone() {
183         return _workflowInstanceLink.clone();
184     }
185 
186     public int compareTo(
187         com.liferay.portal.model.WorkflowInstanceLink workflowInstanceLink) {
188         return _workflowInstanceLink.compareTo(workflowInstanceLink);
189     }
190 
191     public int hashCode() {
192         return _workflowInstanceLink.hashCode();
193     }
194 
195     public java.lang.String toString() {
196         return _workflowInstanceLink.toString();
197     }
198 
199     public java.lang.String toXmlString() {
200         return _workflowInstanceLink.toXmlString();
201     }
202 
203     public WorkflowInstanceLink getWrappedWorkflowInstanceLink() {
204         return _workflowInstanceLink;
205     }
206 
207     private WorkflowInstanceLink _workflowInstanceLink;
208 }