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.announcements.model;
16  
17  /**
18   * <a href="AnnouncementsDeliverySoap.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 AnnouncementsDelivery}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       AnnouncementsDelivery
31   * @generated
32   */
33  public class AnnouncementsDeliveryWrapper implements AnnouncementsDelivery {
34      public AnnouncementsDeliveryWrapper(
35          AnnouncementsDelivery announcementsDelivery) {
36          _announcementsDelivery = announcementsDelivery;
37      }
38  
39      public long getPrimaryKey() {
40          return _announcementsDelivery.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _announcementsDelivery.setPrimaryKey(pk);
45      }
46  
47      public long getDeliveryId() {
48          return _announcementsDelivery.getDeliveryId();
49      }
50  
51      public void setDeliveryId(long deliveryId) {
52          _announcementsDelivery.setDeliveryId(deliveryId);
53      }
54  
55      public long getCompanyId() {
56          return _announcementsDelivery.getCompanyId();
57      }
58  
59      public void setCompanyId(long companyId) {
60          _announcementsDelivery.setCompanyId(companyId);
61      }
62  
63      public long getUserId() {
64          return _announcementsDelivery.getUserId();
65      }
66  
67      public void setUserId(long userId) {
68          _announcementsDelivery.setUserId(userId);
69      }
70  
71      public java.lang.String getUserUuid()
72          throws com.liferay.portal.SystemException {
73          return _announcementsDelivery.getUserUuid();
74      }
75  
76      public void setUserUuid(java.lang.String userUuid) {
77          _announcementsDelivery.setUserUuid(userUuid);
78      }
79  
80      public java.lang.String getType() {
81          return _announcementsDelivery.getType();
82      }
83  
84      public void setType(java.lang.String type) {
85          _announcementsDelivery.setType(type);
86      }
87  
88      public boolean getEmail() {
89          return _announcementsDelivery.getEmail();
90      }
91  
92      public boolean isEmail() {
93          return _announcementsDelivery.isEmail();
94      }
95  
96      public void setEmail(boolean email) {
97          _announcementsDelivery.setEmail(email);
98      }
99  
100     public boolean getSms() {
101         return _announcementsDelivery.getSms();
102     }
103 
104     public boolean isSms() {
105         return _announcementsDelivery.isSms();
106     }
107 
108     public void setSms(boolean sms) {
109         _announcementsDelivery.setSms(sms);
110     }
111 
112     public boolean getWebsite() {
113         return _announcementsDelivery.getWebsite();
114     }
115 
116     public boolean isWebsite() {
117         return _announcementsDelivery.isWebsite();
118     }
119 
120     public void setWebsite(boolean website) {
121         _announcementsDelivery.setWebsite(website);
122     }
123 
124     public boolean isNew() {
125         return _announcementsDelivery.isNew();
126     }
127 
128     public boolean setNew(boolean n) {
129         return _announcementsDelivery.setNew(n);
130     }
131 
132     public boolean isCachedModel() {
133         return _announcementsDelivery.isCachedModel();
134     }
135 
136     public void setCachedModel(boolean cachedModel) {
137         _announcementsDelivery.setCachedModel(cachedModel);
138     }
139 
140     public boolean isEscapedModel() {
141         return _announcementsDelivery.isEscapedModel();
142     }
143 
144     public void setEscapedModel(boolean escapedModel) {
145         _announcementsDelivery.setEscapedModel(escapedModel);
146     }
147 
148     public java.io.Serializable getPrimaryKeyObj() {
149         return _announcementsDelivery.getPrimaryKeyObj();
150     }
151 
152     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
153         return _announcementsDelivery.getExpandoBridge();
154     }
155 
156     public void setExpandoBridgeAttributes(
157         com.liferay.portal.service.ServiceContext serviceContext) {
158         _announcementsDelivery.setExpandoBridgeAttributes(serviceContext);
159     }
160 
161     public java.lang.Object clone() {
162         return _announcementsDelivery.clone();
163     }
164 
165     public int compareTo(
166         com.liferay.portlet.announcements.model.AnnouncementsDelivery announcementsDelivery) {
167         return _announcementsDelivery.compareTo(announcementsDelivery);
168     }
169 
170     public int hashCode() {
171         return _announcementsDelivery.hashCode();
172     }
173 
174     public com.liferay.portlet.announcements.model.AnnouncementsDelivery toEscapedModel() {
175         return _announcementsDelivery.toEscapedModel();
176     }
177 
178     public java.lang.String toString() {
179         return _announcementsDelivery.toString();
180     }
181 
182     public java.lang.String toXmlString() {
183         return _announcementsDelivery.toXmlString();
184     }
185 
186     public AnnouncementsDelivery getWrappedAnnouncementsDelivery() {
187         return _announcementsDelivery;
188     }
189 
190     private AnnouncementsDelivery _announcementsDelivery;
191 }