1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.tags.model;
24  
25  
26  /**
27   * <a href="TagsPropertySoap.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link TagsProperty}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       TagsProperty
40   * @generated
41   */
42  public class TagsPropertyWrapper implements TagsProperty {
43      public TagsPropertyWrapper(TagsProperty tagsProperty) {
44          _tagsProperty = tagsProperty;
45      }
46  
47      public long getPrimaryKey() {
48          return _tagsProperty.getPrimaryKey();
49      }
50  
51      public void setPrimaryKey(long pk) {
52          _tagsProperty.setPrimaryKey(pk);
53      }
54  
55      public long getPropertyId() {
56          return _tagsProperty.getPropertyId();
57      }
58  
59      public void setPropertyId(long propertyId) {
60          _tagsProperty.setPropertyId(propertyId);
61      }
62  
63      public long getCompanyId() {
64          return _tagsProperty.getCompanyId();
65      }
66  
67      public void setCompanyId(long companyId) {
68          _tagsProperty.setCompanyId(companyId);
69      }
70  
71      public long getUserId() {
72          return _tagsProperty.getUserId();
73      }
74  
75      public void setUserId(long userId) {
76          _tagsProperty.setUserId(userId);
77      }
78  
79      public java.lang.String getUserUuid()
80          throws com.liferay.portal.SystemException {
81          return _tagsProperty.getUserUuid();
82      }
83  
84      public void setUserUuid(java.lang.String userUuid) {
85          _tagsProperty.setUserUuid(userUuid);
86      }
87  
88      public java.lang.String getUserName() {
89          return _tagsProperty.getUserName();
90      }
91  
92      public void setUserName(java.lang.String userName) {
93          _tagsProperty.setUserName(userName);
94      }
95  
96      public java.util.Date getCreateDate() {
97          return _tagsProperty.getCreateDate();
98      }
99  
100     public void setCreateDate(java.util.Date createDate) {
101         _tagsProperty.setCreateDate(createDate);
102     }
103 
104     public java.util.Date getModifiedDate() {
105         return _tagsProperty.getModifiedDate();
106     }
107 
108     public void setModifiedDate(java.util.Date modifiedDate) {
109         _tagsProperty.setModifiedDate(modifiedDate);
110     }
111 
112     public long getEntryId() {
113         return _tagsProperty.getEntryId();
114     }
115 
116     public void setEntryId(long entryId) {
117         _tagsProperty.setEntryId(entryId);
118     }
119 
120     public java.lang.String getKey() {
121         return _tagsProperty.getKey();
122     }
123 
124     public void setKey(java.lang.String key) {
125         _tagsProperty.setKey(key);
126     }
127 
128     public java.lang.String getValue() {
129         return _tagsProperty.getValue();
130     }
131 
132     public void setValue(java.lang.String value) {
133         _tagsProperty.setValue(value);
134     }
135 
136     public com.liferay.portlet.tags.model.TagsProperty toEscapedModel() {
137         return _tagsProperty.toEscapedModel();
138     }
139 
140     public boolean isNew() {
141         return _tagsProperty.isNew();
142     }
143 
144     public boolean setNew(boolean n) {
145         return _tagsProperty.setNew(n);
146     }
147 
148     public boolean isCachedModel() {
149         return _tagsProperty.isCachedModel();
150     }
151 
152     public void setCachedModel(boolean cachedModel) {
153         _tagsProperty.setCachedModel(cachedModel);
154     }
155 
156     public boolean isEscapedModel() {
157         return _tagsProperty.isEscapedModel();
158     }
159 
160     public void setEscapedModel(boolean escapedModel) {
161         _tagsProperty.setEscapedModel(escapedModel);
162     }
163 
164     public java.io.Serializable getPrimaryKeyObj() {
165         return _tagsProperty.getPrimaryKeyObj();
166     }
167 
168     public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
169         return _tagsProperty.getExpandoBridge();
170     }
171 
172     public void setExpandoBridgeAttributes(
173         com.liferay.portal.service.ServiceContext serviceContext) {
174         _tagsProperty.setExpandoBridgeAttributes(serviceContext);
175     }
176 
177     public java.lang.Object clone() {
178         return _tagsProperty.clone();
179     }
180 
181     public int compareTo(
182         com.liferay.portlet.tags.model.TagsProperty tagsProperty) {
183         return _tagsProperty.compareTo(tagsProperty);
184     }
185 
186     public int hashCode() {
187         return _tagsProperty.hashCode();
188     }
189 
190     public java.lang.String toString() {
191         return _tagsProperty.toString();
192     }
193 
194     public java.lang.String toXmlString() {
195         return _tagsProperty.toXmlString();
196     }
197 
198     public TagsProperty getWrappedTagsProperty() {
199         return _tagsProperty;
200     }
201 
202     private TagsProperty _tagsProperty;
203 }