001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link Release}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       Release
024     * @generated
025     */
026    public class ReleaseWrapper implements Release {
027            public ReleaseWrapper(Release release) {
028                    _release = release;
029            }
030    
031            /**
032            * Gets the primary key of this release.
033            *
034            * @return the primary key of this release
035            */
036            public long getPrimaryKey() {
037                    return _release.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this release
042            *
043            * @param pk the primary key of this release
044            */
045            public void setPrimaryKey(long pk) {
046                    _release.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the release id of this release.
051            *
052            * @return the release id of this release
053            */
054            public long getReleaseId() {
055                    return _release.getReleaseId();
056            }
057    
058            /**
059            * Sets the release id of this release.
060            *
061            * @param releaseId the release id of this release
062            */
063            public void setReleaseId(long releaseId) {
064                    _release.setReleaseId(releaseId);
065            }
066    
067            /**
068            * Gets the create date of this release.
069            *
070            * @return the create date of this release
071            */
072            public java.util.Date getCreateDate() {
073                    return _release.getCreateDate();
074            }
075    
076            /**
077            * Sets the create date of this release.
078            *
079            * @param createDate the create date of this release
080            */
081            public void setCreateDate(java.util.Date createDate) {
082                    _release.setCreateDate(createDate);
083            }
084    
085            /**
086            * Gets the modified date of this release.
087            *
088            * @return the modified date of this release
089            */
090            public java.util.Date getModifiedDate() {
091                    return _release.getModifiedDate();
092            }
093    
094            /**
095            * Sets the modified date of this release.
096            *
097            * @param modifiedDate the modified date of this release
098            */
099            public void setModifiedDate(java.util.Date modifiedDate) {
100                    _release.setModifiedDate(modifiedDate);
101            }
102    
103            /**
104            * Gets the servlet context name of this release.
105            *
106            * @return the servlet context name of this release
107            */
108            public java.lang.String getServletContextName() {
109                    return _release.getServletContextName();
110            }
111    
112            /**
113            * Sets the servlet context name of this release.
114            *
115            * @param servletContextName the servlet context name of this release
116            */
117            public void setServletContextName(java.lang.String servletContextName) {
118                    _release.setServletContextName(servletContextName);
119            }
120    
121            /**
122            * Gets the build number of this release.
123            *
124            * @return the build number of this release
125            */
126            public int getBuildNumber() {
127                    return _release.getBuildNumber();
128            }
129    
130            /**
131            * Sets the build number of this release.
132            *
133            * @param buildNumber the build number of this release
134            */
135            public void setBuildNumber(int buildNumber) {
136                    _release.setBuildNumber(buildNumber);
137            }
138    
139            /**
140            * Gets the build date of this release.
141            *
142            * @return the build date of this release
143            */
144            public java.util.Date getBuildDate() {
145                    return _release.getBuildDate();
146            }
147    
148            /**
149            * Sets the build date of this release.
150            *
151            * @param buildDate the build date of this release
152            */
153            public void setBuildDate(java.util.Date buildDate) {
154                    _release.setBuildDate(buildDate);
155            }
156    
157            /**
158            * Gets the verified of this release.
159            *
160            * @return the verified of this release
161            */
162            public boolean getVerified() {
163                    return _release.getVerified();
164            }
165    
166            /**
167            * Determines whether this release is verified.
168            *
169            * @return whether this release is verified
170            */
171            public boolean isVerified() {
172                    return _release.isVerified();
173            }
174    
175            /**
176            * Sets whether this {$entity.humanName} is verified.
177            *
178            * @param verified the verified of this release
179            */
180            public void setVerified(boolean verified) {
181                    _release.setVerified(verified);
182            }
183    
184            /**
185            * Gets the test string of this release.
186            *
187            * @return the test string of this release
188            */
189            public java.lang.String getTestString() {
190                    return _release.getTestString();
191            }
192    
193            /**
194            * Sets the test string of this release.
195            *
196            * @param testString the test string of this release
197            */
198            public void setTestString(java.lang.String testString) {
199                    _release.setTestString(testString);
200            }
201    
202            public boolean isNew() {
203                    return _release.isNew();
204            }
205    
206            public void setNew(boolean n) {
207                    _release.setNew(n);
208            }
209    
210            public boolean isCachedModel() {
211                    return _release.isCachedModel();
212            }
213    
214            public void setCachedModel(boolean cachedModel) {
215                    _release.setCachedModel(cachedModel);
216            }
217    
218            public boolean isEscapedModel() {
219                    return _release.isEscapedModel();
220            }
221    
222            public void setEscapedModel(boolean escapedModel) {
223                    _release.setEscapedModel(escapedModel);
224            }
225    
226            public java.io.Serializable getPrimaryKeyObj() {
227                    return _release.getPrimaryKeyObj();
228            }
229    
230            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
231                    return _release.getExpandoBridge();
232            }
233    
234            public void setExpandoBridgeAttributes(
235                    com.liferay.portal.service.ServiceContext serviceContext) {
236                    _release.setExpandoBridgeAttributes(serviceContext);
237            }
238    
239            public java.lang.Object clone() {
240                    return _release.clone();
241            }
242    
243            public int compareTo(com.liferay.portal.model.Release release) {
244                    return _release.compareTo(release);
245            }
246    
247            public int hashCode() {
248                    return _release.hashCode();
249            }
250    
251            public com.liferay.portal.model.Release toEscapedModel() {
252                    return _release.toEscapedModel();
253            }
254    
255            public java.lang.String toString() {
256                    return _release.toString();
257            }
258    
259            public java.lang.String toXmlString() {
260                    return _release.toXmlString();
261            }
262    
263            public Release getWrappedRelease() {
264                    return _release;
265            }
266    
267            private Release _release;
268    }