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    /**
019     * <p>
020     * This class is a wrapper for {@link AnnouncementsDelivery}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       AnnouncementsDelivery
025     * @generated
026     */
027    public class AnnouncementsDeliveryWrapper implements AnnouncementsDelivery {
028            public AnnouncementsDeliveryWrapper(
029                    AnnouncementsDelivery announcementsDelivery) {
030                    _announcementsDelivery = announcementsDelivery;
031            }
032    
033            public long getPrimaryKey() {
034                    return _announcementsDelivery.getPrimaryKey();
035            }
036    
037            public void setPrimaryKey(long pk) {
038                    _announcementsDelivery.setPrimaryKey(pk);
039            }
040    
041            public long getDeliveryId() {
042                    return _announcementsDelivery.getDeliveryId();
043            }
044    
045            public void setDeliveryId(long deliveryId) {
046                    _announcementsDelivery.setDeliveryId(deliveryId);
047            }
048    
049            public long getCompanyId() {
050                    return _announcementsDelivery.getCompanyId();
051            }
052    
053            public void setCompanyId(long companyId) {
054                    _announcementsDelivery.setCompanyId(companyId);
055            }
056    
057            public long getUserId() {
058                    return _announcementsDelivery.getUserId();
059            }
060    
061            public void setUserId(long userId) {
062                    _announcementsDelivery.setUserId(userId);
063            }
064    
065            public java.lang.String getUserUuid()
066                    throws com.liferay.portal.kernel.exception.SystemException {
067                    return _announcementsDelivery.getUserUuid();
068            }
069    
070            public void setUserUuid(java.lang.String userUuid) {
071                    _announcementsDelivery.setUserUuid(userUuid);
072            }
073    
074            public java.lang.String getType() {
075                    return _announcementsDelivery.getType();
076            }
077    
078            public void setType(java.lang.String type) {
079                    _announcementsDelivery.setType(type);
080            }
081    
082            public boolean getEmail() {
083                    return _announcementsDelivery.getEmail();
084            }
085    
086            public boolean isEmail() {
087                    return _announcementsDelivery.isEmail();
088            }
089    
090            public void setEmail(boolean email) {
091                    _announcementsDelivery.setEmail(email);
092            }
093    
094            public boolean getSms() {
095                    return _announcementsDelivery.getSms();
096            }
097    
098            public boolean isSms() {
099                    return _announcementsDelivery.isSms();
100            }
101    
102            public void setSms(boolean sms) {
103                    _announcementsDelivery.setSms(sms);
104            }
105    
106            public boolean getWebsite() {
107                    return _announcementsDelivery.getWebsite();
108            }
109    
110            public boolean isWebsite() {
111                    return _announcementsDelivery.isWebsite();
112            }
113    
114            public void setWebsite(boolean website) {
115                    _announcementsDelivery.setWebsite(website);
116            }
117    
118            public com.liferay.portlet.announcements.model.AnnouncementsDelivery toEscapedModel() {
119                    return _announcementsDelivery.toEscapedModel();
120            }
121    
122            public boolean isNew() {
123                    return _announcementsDelivery.isNew();
124            }
125    
126            public void setNew(boolean n) {
127                    _announcementsDelivery.setNew(n);
128            }
129    
130            public boolean isCachedModel() {
131                    return _announcementsDelivery.isCachedModel();
132            }
133    
134            public void setCachedModel(boolean cachedModel) {
135                    _announcementsDelivery.setCachedModel(cachedModel);
136            }
137    
138            public boolean isEscapedModel() {
139                    return _announcementsDelivery.isEscapedModel();
140            }
141    
142            public void setEscapedModel(boolean escapedModel) {
143                    _announcementsDelivery.setEscapedModel(escapedModel);
144            }
145    
146            public java.io.Serializable getPrimaryKeyObj() {
147                    return _announcementsDelivery.getPrimaryKeyObj();
148            }
149    
150            public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
151                    return _announcementsDelivery.getExpandoBridge();
152            }
153    
154            public void setExpandoBridgeAttributes(
155                    com.liferay.portal.service.ServiceContext serviceContext) {
156                    _announcementsDelivery.setExpandoBridgeAttributes(serviceContext);
157            }
158    
159            public java.lang.Object clone() {
160                    return _announcementsDelivery.clone();
161            }
162    
163            public int compareTo(
164                    com.liferay.portlet.announcements.model.AnnouncementsDelivery announcementsDelivery) {
165                    return _announcementsDelivery.compareTo(announcementsDelivery);
166            }
167    
168            public int hashCode() {
169                    return _announcementsDelivery.hashCode();
170            }
171    
172            public java.lang.String toString() {
173                    return _announcementsDelivery.toString();
174            }
175    
176            public java.lang.String toXmlString() {
177                    return _announcementsDelivery.toXmlString();
178            }
179    
180            public AnnouncementsDelivery getWrappedAnnouncementsDelivery() {
181                    return _announcementsDelivery;
182            }
183    
184            private AnnouncementsDelivery _announcementsDelivery;
185    }