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