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