1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.ratings.model;
16  
17  /**
18   * <a href="RatingsEntrySoap.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link RatingsEntry}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       RatingsEntry
31   * @generated
32   */
33  public class RatingsEntryWrapper implements RatingsEntry {
34      public RatingsEntryWrapper(RatingsEntry ratingsEntry) {
35          _ratingsEntry = ratingsEntry;
36      }
37  
38      public long getPrimaryKey() {
39          return _ratingsEntry.getPrimaryKey();
40      }
41  
42      public void setPrimaryKey(long pk) {
43          _ratingsEntry.setPrimaryKey(pk);
44      }
45  
46      public long getEntryId() {
47          return _ratingsEntry.getEntryId();
48      }
49  
50      public void setEntryId(long entryId) {
51          _ratingsEntry.setEntryId(entryId);
52      }
53  
54      public long getCompanyId() {
55          return _ratingsEntry.getCompanyId();
56      }
57  
58      public void setCompanyId(long companyId) {
59          _ratingsEntry.setCompanyId(companyId);
60      }
61  
62      public long getUserId() {
63          return _ratingsEntry.getUserId();
64      }
65  
66      public void setUserId(long userId) {
67          _ratingsEntry.setUserId(userId);
68      }
69  
70      public java.lang.String getUserUuid()
71          throws com.liferay.portal.SystemException {
72          return _ratingsEntry.getUserUuid();
73      }
74  
75      public void setUserUuid(java.lang.String userUuid) {
76          _ratingsEntry.setUserUuid(userUuid);
77      }
78  
79      public java.lang.String getUserName() {
80          return _ratingsEntry.getUserName();
81      }
82  
83      public void setUserName(java.lang.String userName) {
84          _ratingsEntry.setUserName(userName);
85      }
86  
87      public java.util.Date getCreateDate() {
88          return _ratingsEntry.getCreateDate();
89      }
90  
91      public void setCreateDate(java.util.Date createDate) {
92          _ratingsEntry.setCreateDate(createDate);
93      }
94  
95      public java.util.Date getModifiedDate() {
96          return _ratingsEntry.getModifiedDate();
97      }
98  
99      public void setModifiedDate(java.util.Date modifiedDate) {
100         _ratingsEntry.setModifiedDate(modifiedDate);
101     }
102 
103     public java.lang.String getClassName() {
104         return _ratingsEntry.getClassName();
105     }
106 
107     public long getClassNameId() {
108         return _ratingsEntry.getClassNameId();
109     }
110 
111     public void setClassNameId(long classNameId) {
112         _ratingsEntry.setClassNameId(classNameId);
113     }
114 
115     public long getClassPK() {
116         return _ratingsEntry.getClassPK();
117     }
118 
119     public void setClassPK(long classPK) {
120         _ratingsEntry.setClassPK(classPK);
121     }
122 
123     public double getScore() {
124         return _ratingsEntry.getScore();
125     }
126 
127     public void setScore(double score) {
128         _ratingsEntry.setScore(score);
129     }
130 
131     public boolean isNew() {
132         return _ratingsEntry.isNew();
133     }
134 
135     public boolean setNew(boolean n) {
136         return _ratingsEntry.setNew(n);
137     }
138 
139     public boolean isCachedModel() {
140         return _ratingsEntry.isCachedModel();
141     }
142 
143     public void setCachedModel(boolean cachedModel) {
144         _ratingsEntry.setCachedModel(cachedModel);
145     }
146 
147     public boolean isEscapedModel() {
148         return _ratingsEntry.isEscapedModel();
149     }
150 
151     public void setEscapedModel(boolean escapedModel) {
152         _ratingsEntry.setEscapedModel(escapedModel);
153     }
154 
155     public java.io.Serializable getPrimaryKeyObj() {
156         return _ratingsEntry.getPrimaryKeyObj();
157     }
158 
159     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
160         return _ratingsEntry.getExpandoBridge();
161     }
162 
163     public void setExpandoBridgeAttributes(
164         com.liferay.portal.service.ServiceContext serviceContext) {
165         _ratingsEntry.setExpandoBridgeAttributes(serviceContext);
166     }
167 
168     public java.lang.Object clone() {
169         return _ratingsEntry.clone();
170     }
171 
172     public int compareTo(
173         com.liferay.portlet.ratings.model.RatingsEntry ratingsEntry) {
174         return _ratingsEntry.compareTo(ratingsEntry);
175     }
176 
177     public int hashCode() {
178         return _ratingsEntry.hashCode();
179     }
180 
181     public com.liferay.portlet.ratings.model.RatingsEntry toEscapedModel() {
182         return _ratingsEntry.toEscapedModel();
183     }
184 
185     public java.lang.String toString() {
186         return _ratingsEntry.toString();
187     }
188 
189     public java.lang.String toXmlString() {
190         return _ratingsEntry.toXmlString();
191     }
192 
193     public RatingsEntry getWrappedRatingsEntry() {
194         return _ratingsEntry;
195     }
196 
197     private RatingsEntry _ratingsEntry;
198 }