1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.wiki.model;
24  
25  
26  /**
27   * <a href="WikiNodeSoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link WikiNode}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       WikiNode
40   * @generated
41   */
42  public class WikiNodeWrapper implements WikiNode {
43      public WikiNodeWrapper(WikiNode wikiNode) {
44          _wikiNode = wikiNode;
45      }
46  
47      public long getPrimaryKey() {
48          return _wikiNode.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _wikiNode.setPrimaryKey(pk);
53      }
54  
55      public java.lang.String getUuid() {
56          return _wikiNode.getUuid();
57      }
58  
59      public void setUuid(java.lang.String uuid) {
60          _wikiNode.setUuid(uuid);
61      }
62  
63      public long getNodeId() {
64          return _wikiNode.getNodeId();
65      }
66  
67      public void setNodeId(long nodeId) {
68          _wikiNode.setNodeId(nodeId);
69      }
70  
71      public long getGroupId() {
72          return _wikiNode.getGroupId();
73      }
74  
75      public void setGroupId(long groupId) {
76          _wikiNode.setGroupId(groupId);
77      }
78  
79      public long getCompanyId() {
80          return _wikiNode.getCompanyId();
81      }
82  
83      public void setCompanyId(long companyId) {
84          _wikiNode.setCompanyId(companyId);
85      }
86  
87      public long getUserId() {
88          return _wikiNode.getUserId();
89      }
90  
91      public void setUserId(long userId) {
92          _wikiNode.setUserId(userId);
93      }
94  
95      public java.lang.String getUserUuid()
96          throws com.liferay.portal.SystemException {
97          return _wikiNode.getUserUuid();
98      }
99  
100     public void setUserUuid(java.lang.String userUuid) {
101         _wikiNode.setUserUuid(userUuid);
102     }
103 
104     public java.lang.String getUserName() {
105         return _wikiNode.getUserName();
106     }
107 
108     public void setUserName(java.lang.String userName) {
109         _wikiNode.setUserName(userName);
110     }
111 
112     public java.util.Date getCreateDate() {
113         return _wikiNode.getCreateDate();
114     }
115 
116     public void setCreateDate(java.util.Date createDate) {
117         _wikiNode.setCreateDate(createDate);
118     }
119 
120     public java.util.Date getModifiedDate() {
121         return _wikiNode.getModifiedDate();
122     }
123 
124     public void setModifiedDate(java.util.Date modifiedDate) {
125         _wikiNode.setModifiedDate(modifiedDate);
126     }
127 
128     public java.lang.String getName() {
129         return _wikiNode.getName();
130     }
131 
132     public void setName(java.lang.String name) {
133         _wikiNode.setName(name);
134     }
135 
136     public java.lang.String getDescription() {
137         return _wikiNode.getDescription();
138     }
139 
140     public void setDescription(java.lang.String description) {
141         _wikiNode.setDescription(description);
142     }
143 
144     public java.util.Date getLastPostDate() {
145         return _wikiNode.getLastPostDate();
146     }
147 
148     public void setLastPostDate(java.util.Date lastPostDate) {
149         _wikiNode.setLastPostDate(lastPostDate);
150     }
151 
152     public com.liferay.portlet.wiki.model.WikiNode toEscapedModel() {
153         return _wikiNode.toEscapedModel();
154     }
155 
156     public boolean isNew() {
157         return _wikiNode.isNew();
158     }
159 
160     public boolean setNew(boolean n) {
161         return _wikiNode.setNew(n);
162     }
163 
164     public boolean isCachedModel() {
165         return _wikiNode.isCachedModel();
166     }
167 
168     public void setCachedModel(boolean cachedModel) {
169         _wikiNode.setCachedModel(cachedModel);
170     }
171 
172     public boolean isEscapedModel() {
173         return _wikiNode.isEscapedModel();
174     }
175 
176     public void setEscapedModel(boolean escapedModel) {
177         _wikiNode.setEscapedModel(escapedModel);
178     }
179 
180     public java.io.Serializable getPrimaryKeyObj() {
181         return _wikiNode.getPrimaryKeyObj();
182     }
183 
184     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
185         return _wikiNode.getExpandoBridge();
186     }
187 
188     public void setExpandoBridgeAttributes(
189         com.liferay.portal.service.ServiceContext serviceContext) {
190         _wikiNode.setExpandoBridgeAttributes(serviceContext);
191     }
192 
193     public java.lang.Object clone() {
194         return _wikiNode.clone();
195     }
196 
197     public int compareTo(com.liferay.portlet.wiki.model.WikiNode wikiNode) {
198         return _wikiNode.compareTo(wikiNode);
199     }
200 
201     public int hashCode() {
202         return _wikiNode.hashCode();
203     }
204 
205     public java.lang.String toString() {
206         return _wikiNode.toString();
207     }
208 
209     public java.lang.String toXmlString() {
210         return _wikiNode.toXmlString();
211     }
212 
213     public WikiNode getWrappedWikiNode() {
214         return _wikiNode;
215     }
216 
217     private WikiNode _wikiNode;
218 }