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.blogs.model;
24  
25  
26  /**
27   * <a href="BlogsEntrySoap.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 BlogsEntry}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       BlogsEntry
40   * @generated
41   */
42  public class BlogsEntryWrapper implements BlogsEntry {
43      public BlogsEntryWrapper(BlogsEntry blogsEntry) {
44          _blogsEntry = blogsEntry;
45      }
46  
47      public long getPrimaryKey() {
48          return _blogsEntry.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _blogsEntry.setPrimaryKey(pk);
53      }
54  
55      public java.lang.String getUuid() {
56          return _blogsEntry.getUuid();
57      }
58  
59      public void setUuid(java.lang.String uuid) {
60          _blogsEntry.setUuid(uuid);
61      }
62  
63      public long getEntryId() {
64          return _blogsEntry.getEntryId();
65      }
66  
67      public void setEntryId(long entryId) {
68          _blogsEntry.setEntryId(entryId);
69      }
70  
71      public long getGroupId() {
72          return _blogsEntry.getGroupId();
73      }
74  
75      public void setGroupId(long groupId) {
76          _blogsEntry.setGroupId(groupId);
77      }
78  
79      public long getCompanyId() {
80          return _blogsEntry.getCompanyId();
81      }
82  
83      public void setCompanyId(long companyId) {
84          _blogsEntry.setCompanyId(companyId);
85      }
86  
87      public long getUserId() {
88          return _blogsEntry.getUserId();
89      }
90  
91      public void setUserId(long userId) {
92          _blogsEntry.setUserId(userId);
93      }
94  
95      public java.lang.String getUserUuid()
96          throws com.liferay.portal.SystemException {
97          return _blogsEntry.getUserUuid();
98      }
99  
100     public void setUserUuid(java.lang.String userUuid) {
101         _blogsEntry.setUserUuid(userUuid);
102     }
103 
104     public java.lang.String getUserName() {
105         return _blogsEntry.getUserName();
106     }
107 
108     public void setUserName(java.lang.String userName) {
109         _blogsEntry.setUserName(userName);
110     }
111 
112     public java.util.Date getCreateDate() {
113         return _blogsEntry.getCreateDate();
114     }
115 
116     public void setCreateDate(java.util.Date createDate) {
117         _blogsEntry.setCreateDate(createDate);
118     }
119 
120     public java.util.Date getModifiedDate() {
121         return _blogsEntry.getModifiedDate();
122     }
123 
124     public void setModifiedDate(java.util.Date modifiedDate) {
125         _blogsEntry.setModifiedDate(modifiedDate);
126     }
127 
128     public java.lang.String getTitle() {
129         return _blogsEntry.getTitle();
130     }
131 
132     public void setTitle(java.lang.String title) {
133         _blogsEntry.setTitle(title);
134     }
135 
136     public java.lang.String getUrlTitle() {
137         return _blogsEntry.getUrlTitle();
138     }
139 
140     public void setUrlTitle(java.lang.String urlTitle) {
141         _blogsEntry.setUrlTitle(urlTitle);
142     }
143 
144     public java.lang.String getContent() {
145         return _blogsEntry.getContent();
146     }
147 
148     public void setContent(java.lang.String content) {
149         _blogsEntry.setContent(content);
150     }
151 
152     public java.util.Date getDisplayDate() {
153         return _blogsEntry.getDisplayDate();
154     }
155 
156     public void setDisplayDate(java.util.Date displayDate) {
157         _blogsEntry.setDisplayDate(displayDate);
158     }
159 
160     public boolean getDraft() {
161         return _blogsEntry.getDraft();
162     }
163 
164     public boolean isDraft() {
165         return _blogsEntry.isDraft();
166     }
167 
168     public void setDraft(boolean draft) {
169         _blogsEntry.setDraft(draft);
170     }
171 
172     public boolean getAllowTrackbacks() {
173         return _blogsEntry.getAllowTrackbacks();
174     }
175 
176     public boolean isAllowTrackbacks() {
177         return _blogsEntry.isAllowTrackbacks();
178     }
179 
180     public void setAllowTrackbacks(boolean allowTrackbacks) {
181         _blogsEntry.setAllowTrackbacks(allowTrackbacks);
182     }
183 
184     public java.lang.String getTrackbacks() {
185         return _blogsEntry.getTrackbacks();
186     }
187 
188     public void setTrackbacks(java.lang.String trackbacks) {
189         _blogsEntry.setTrackbacks(trackbacks);
190     }
191 
192     public com.liferay.portlet.blogs.model.BlogsEntry toEscapedModel() {
193         return _blogsEntry.toEscapedModel();
194     }
195 
196     public boolean isNew() {
197         return _blogsEntry.isNew();
198     }
199 
200     public boolean setNew(boolean n) {
201         return _blogsEntry.setNew(n);
202     }
203 
204     public boolean isCachedModel() {
205         return _blogsEntry.isCachedModel();
206     }
207 
208     public void setCachedModel(boolean cachedModel) {
209         _blogsEntry.setCachedModel(cachedModel);
210     }
211 
212     public boolean isEscapedModel() {
213         return _blogsEntry.isEscapedModel();
214     }
215 
216     public void setEscapedModel(boolean escapedModel) {
217         _blogsEntry.setEscapedModel(escapedModel);
218     }
219 
220     public java.io.Serializable getPrimaryKeyObj() {
221         return _blogsEntry.getPrimaryKeyObj();
222     }
223 
224     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
225         return _blogsEntry.getExpandoBridge();
226     }
227 
228     public void setExpandoBridgeAttributes(
229         com.liferay.portal.service.ServiceContext serviceContext) {
230         _blogsEntry.setExpandoBridgeAttributes(serviceContext);
231     }
232 
233     public java.lang.Object clone() {
234         return _blogsEntry.clone();
235     }
236 
237     public int compareTo(com.liferay.portlet.blogs.model.BlogsEntry blogsEntry) {
238         return _blogsEntry.compareTo(blogsEntry);
239     }
240 
241     public int hashCode() {
242         return _blogsEntry.hashCode();
243     }
244 
245     public java.lang.String toString() {
246         return _blogsEntry.toString();
247     }
248 
249     public java.lang.String toXmlString() {
250         return _blogsEntry.toXmlString();
251     }
252 
253     public boolean isApproved() {
254         return _blogsEntry.isApproved();
255     }
256 
257     public BlogsEntry getWrappedBlogsEntry() {
258         return _blogsEntry;
259     }
260 
261     private BlogsEntry _blogsEntry;
262 }