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 PasswordTracker}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       PasswordTracker
024     * @generated
025     */
026    public class PasswordTrackerWrapper implements PasswordTracker {
027            public PasswordTrackerWrapper(PasswordTracker passwordTracker) {
028                    _passwordTracker = passwordTracker;
029            }
030    
031            /**
032            * Gets the primary key of this password tracker.
033            *
034            * @return the primary key of this password tracker
035            */
036            public long getPrimaryKey() {
037                    return _passwordTracker.getPrimaryKey();
038            }
039    
040            /**
041            * Sets the primary key of this password tracker
042            *
043            * @param pk the primary key of this password tracker
044            */
045            public void setPrimaryKey(long pk) {
046                    _passwordTracker.setPrimaryKey(pk);
047            }
048    
049            /**
050            * Gets the password tracker id of this password tracker.
051            *
052            * @return the password tracker id of this password tracker
053            */
054            public long getPasswordTrackerId() {
055                    return _passwordTracker.getPasswordTrackerId();
056            }
057    
058            /**
059            * Sets the password tracker id of this password tracker.
060            *
061            * @param passwordTrackerId the password tracker id of this password tracker
062            */
063            public void setPasswordTrackerId(long passwordTrackerId) {
064                    _passwordTracker.setPasswordTrackerId(passwordTrackerId);
065            }
066    
067            /**
068            * Gets the user id of this password tracker.
069            *
070            * @return the user id of this password tracker
071            */
072            public long getUserId() {
073                    return _passwordTracker.getUserId();
074            }
075    
076            /**
077            * Sets the user id of this password tracker.
078            *
079            * @param userId the user id of this password tracker
080            */
081            public void setUserId(long userId) {
082                    _passwordTracker.setUserId(userId);
083            }
084    
085            /**
086            * Gets the user uuid of this password tracker.
087            *
088            * @return the user uuid of this password tracker
089            * @throws SystemException if a system exception occurred
090            */
091            public java.lang.String getUserUuid()
092                    throws com.liferay.portal.kernel.exception.SystemException {
093                    return _passwordTracker.getUserUuid();
094            }
095    
096            /**
097            * Sets the user uuid of this password tracker.
098            *
099            * @param userUuid the user uuid of this password tracker
100            */
101            public void setUserUuid(java.lang.String userUuid) {
102                    _passwordTracker.setUserUuid(userUuid);
103            }
104    
105            /**
106            * Gets the create date of this password tracker.
107            *
108            * @return the create date of this password tracker
109            */
110            public java.util.Date getCreateDate() {
111                    return _passwordTracker.getCreateDate();
112            }
113    
114            /**
115            * Sets the create date of this password tracker.
116            *
117            * @param createDate the create date of this password tracker
118            */
119            public void setCreateDate(java.util.Date createDate) {
120                    _passwordTracker.setCreateDate(createDate);
121            }
122    
123            /**
124            * Gets the password of this password tracker.
125            *
126            * @return the password of this password tracker
127            */
128            public java.lang.String getPassword() {
129                    return _passwordTracker.getPassword();
130            }
131    
132            /**
133            * Sets the password of this password tracker.
134            *
135            * @param password the password of this password tracker
136            */
137            public void setPassword(java.lang.String password) {
138                    _passwordTracker.setPassword(password);
139            }
140    
141            public boolean isNew() {
142                    return _passwordTracker.isNew();
143            }
144    
145            public void setNew(boolean n) {
146                    _passwordTracker.setNew(n);
147            }
148    
149            public boolean isCachedModel() {
150                    return _passwordTracker.isCachedModel();
151            }
152    
153            public void setCachedModel(boolean cachedModel) {
154                    _passwordTracker.setCachedModel(cachedModel);
155            }
156    
157            public boolean isEscapedModel() {
158                    return _passwordTracker.isEscapedModel();
159            }
160    
161            public void setEscapedModel(boolean escapedModel) {
162                    _passwordTracker.setEscapedModel(escapedModel);
163            }
164    
165            public java.io.Serializable getPrimaryKeyObj() {
166                    return _passwordTracker.getPrimaryKeyObj();
167            }
168    
169            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
170                    return _passwordTracker.getExpandoBridge();
171            }
172    
173            public void setExpandoBridgeAttributes(
174                    com.liferay.portal.service.ServiceContext serviceContext) {
175                    _passwordTracker.setExpandoBridgeAttributes(serviceContext);
176            }
177    
178            public java.lang.Object clone() {
179                    return _passwordTracker.clone();
180            }
181    
182            public int compareTo(
183                    com.liferay.portal.model.PasswordTracker passwordTracker) {
184                    return _passwordTracker.compareTo(passwordTracker);
185            }
186    
187            public int hashCode() {
188                    return _passwordTracker.hashCode();
189            }
190    
191            public com.liferay.portal.model.PasswordTracker toEscapedModel() {
192                    return _passwordTracker.toEscapedModel();
193            }
194    
195            public java.lang.String toString() {
196                    return _passwordTracker.toString();
197            }
198    
199            public java.lang.String toXmlString() {
200                    return _passwordTracker.toXmlString();
201            }
202    
203            public PasswordTracker getWrappedPasswordTracker() {
204                    return _passwordTracker;
205            }
206    
207            private PasswordTracker _passwordTracker;
208    }