001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.announcements.model;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link AnnouncementsDelivery}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       AnnouncementsDelivery
024     * @generated
025     */
026    public class AnnouncementsDeliveryWrapper implements AnnouncementsDelivery {
027            public AnnouncementsDeliveryWrapper(
028                    AnnouncementsDelivery announcementsDelivery) {
029                    _announcementsDelivery = announcementsDelivery;
030            }
031    
032            public long getPrimaryKey() {
033                    return _announcementsDelivery.getPrimaryKey();
034            }
035    
036            public void setPrimaryKey(long pk) {
037                    _announcementsDelivery.setPrimaryKey(pk);
038            }
039    
040            public long getDeliveryId() {
041                    return _announcementsDelivery.getDeliveryId();
042            }
043    
044            public void setDeliveryId(long deliveryId) {
045                    _announcementsDelivery.setDeliveryId(deliveryId);
046            }
047    
048            public long getCompanyId() {
049                    return _announcementsDelivery.getCompanyId();
050            }
051    
052            public void setCompanyId(long companyId) {
053                    _announcementsDelivery.setCompanyId(companyId);
054            }
055    
056            public long getUserId() {
057                    return _announcementsDelivery.getUserId();
058            }
059    
060            public void setUserId(long userId) {
061                    _announcementsDelivery.setUserId(userId);
062            }
063    
064            public java.lang.String getUserUuid()
065                    throws com.liferay.portal.kernel.exception.SystemException {
066                    return _announcementsDelivery.getUserUuid();
067            }
068    
069            public void setUserUuid(java.lang.String userUuid) {
070                    _announcementsDelivery.setUserUuid(userUuid);
071            }
072    
073            public java.lang.String getType() {
074                    return _announcementsDelivery.getType();
075            }
076    
077            public void setType(java.lang.String type) {
078                    _announcementsDelivery.setType(type);
079            }
080    
081            public boolean getEmail() {
082                    return _announcementsDelivery.getEmail();
083            }
084    
085            public boolean isEmail() {
086                    return _announcementsDelivery.isEmail();
087            }
088    
089            public void setEmail(boolean email) {
090                    _announcementsDelivery.setEmail(email);
091            }
092    
093            public boolean getSms() {
094                    return _announcementsDelivery.getSms();
095            }
096    
097            public boolean isSms() {
098                    return _announcementsDelivery.isSms();
099            }
100    
101            public void setSms(boolean sms) {
102                    _announcementsDelivery.setSms(sms);
103            }
104    
105            public boolean getWebsite() {
106                    return _announcementsDelivery.getWebsite();
107            }
108    
109            public boolean isWebsite() {
110                    return _announcementsDelivery.isWebsite();
111            }
112    
113            public void setWebsite(boolean website) {
114                    _announcementsDelivery.setWebsite(website);
115            }
116    
117            public com.liferay.portlet.announcements.model.AnnouncementsDelivery toEscapedModel() {
118                    return _announcementsDelivery.toEscapedModel();
119            }
120    
121            public boolean isNew() {
122                    return _announcementsDelivery.isNew();
123            }
124    
125            public void setNew(boolean n) {
126                    _announcementsDelivery.setNew(n);
127            }
128    
129            public boolean isCachedModel() {
130                    return _announcementsDelivery.isCachedModel();
131            }
132    
133            public void setCachedModel(boolean cachedModel) {
134                    _announcementsDelivery.setCachedModel(cachedModel);
135            }
136    
137            public boolean isEscapedModel() {
138                    return _announcementsDelivery.isEscapedModel();
139            }
140    
141            public void setEscapedModel(boolean escapedModel) {
142                    _announcementsDelivery.setEscapedModel(escapedModel);
143            }
144    
145            public java.io.Serializable getPrimaryKeyObj() {
146                    return _announcementsDelivery.getPrimaryKeyObj();
147            }
148    
149            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
150                    return _announcementsDelivery.getExpandoBridge();
151            }
152    
153            public void setExpandoBridgeAttributes(
154                    com.liferay.portal.service.ServiceContext serviceContext) {
155                    _announcementsDelivery.setExpandoBridgeAttributes(serviceContext);
156            }
157    
158            public java.lang.Object clone() {
159                    return _announcementsDelivery.clone();
160            }
161    
162            public int compareTo(
163                    com.liferay.portlet.announcements.model.AnnouncementsDelivery announcementsDelivery) {
164                    return _announcementsDelivery.compareTo(announcementsDelivery);
165            }
166    
167            public int hashCode() {
168                    return _announcementsDelivery.hashCode();
169            }
170    
171            public java.lang.String toString() {
172                    return _announcementsDelivery.toString();
173            }
174    
175            public java.lang.String toXmlString() {
176                    return _announcementsDelivery.toXmlString();
177            }
178    
179            public AnnouncementsDelivery getWrappedAnnouncementsDelivery() {
180                    return _announcementsDelivery;
181            }
182    
183            private AnnouncementsDelivery _announcementsDelivery;
184    }