1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.tags.model;
16  
17  
18  /**
19   * <a href="TagsPropertySoap.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link TagsProperty}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       TagsProperty
32   * @generated
33   */
34  public class TagsPropertyWrapper implements TagsProperty {
35      public TagsPropertyWrapper(TagsProperty tagsProperty) {
36          _tagsProperty = tagsProperty;
37      }
38  
39      public long getPrimaryKey() {
40          return _tagsProperty.getPrimaryKey();
41      }
42  
43      public void setPrimaryKey(long pk) {
44          _tagsProperty.setPrimaryKey(pk);
45      }
46  
47      public long getPropertyId() {
48          return _tagsProperty.getPropertyId();
49      }
50  
51      public void setPropertyId(long propertyId) {
52          _tagsProperty.setPropertyId(propertyId);
53      }
54  
55      public long getCompanyId() {
56          return _tagsProperty.getCompanyId();
57      }
58  
59      public void setCompanyId(long companyId) {
60          _tagsProperty.setCompanyId(companyId);
61      }
62  
63      public long getUserId() {
64          return _tagsProperty.getUserId();
65      }
66  
67      public void setUserId(long userId) {
68          _tagsProperty.setUserId(userId);
69      }
70  
71      public java.lang.String getUserUuid()
72          throws com.liferay.portal.SystemException {
73          return _tagsProperty.getUserUuid();
74      }
75  
76      public void setUserUuid(java.lang.String userUuid) {
77          _tagsProperty.setUserUuid(userUuid);
78      }
79  
80      public java.lang.String getUserName() {
81          return _tagsProperty.getUserName();
82      }
83  
84      public void setUserName(java.lang.String userName) {
85          _tagsProperty.setUserName(userName);
86      }
87  
88      public java.util.Date getCreateDate() {
89          return _tagsProperty.getCreateDate();
90      }
91  
92      public void setCreateDate(java.util.Date createDate) {
93          _tagsProperty.setCreateDate(createDate);
94      }
95  
96      public java.util.Date getModifiedDate() {
97          return _tagsProperty.getModifiedDate();
98      }
99  
100     public void setModifiedDate(java.util.Date modifiedDate) {
101         _tagsProperty.setModifiedDate(modifiedDate);
102     }
103 
104     public long getEntryId() {
105         return _tagsProperty.getEntryId();
106     }
107 
108     public void setEntryId(long entryId) {
109         _tagsProperty.setEntryId(entryId);
110     }
111 
112     public java.lang.String getKey() {
113         return _tagsProperty.getKey();
114     }
115 
116     public void setKey(java.lang.String key) {
117         _tagsProperty.setKey(key);
118     }
119 
120     public java.lang.String getValue() {
121         return _tagsProperty.getValue();
122     }
123 
124     public void setValue(java.lang.String value) {
125         _tagsProperty.setValue(value);
126     }
127 
128     public com.liferay.portlet.tags.model.TagsProperty toEscapedModel() {
129         return _tagsProperty.toEscapedModel();
130     }
131 
132     public boolean isNew() {
133         return _tagsProperty.isNew();
134     }
135 
136     public boolean setNew(boolean n) {
137         return _tagsProperty.setNew(n);
138     }
139 
140     public boolean isCachedModel() {
141         return _tagsProperty.isCachedModel();
142     }
143 
144     public void setCachedModel(boolean cachedModel) {
145         _tagsProperty.setCachedModel(cachedModel);
146     }
147 
148     public boolean isEscapedModel() {
149         return _tagsProperty.isEscapedModel();
150     }
151 
152     public void setEscapedModel(boolean escapedModel) {
153         _tagsProperty.setEscapedModel(escapedModel);
154     }
155 
156     public java.io.Serializable getPrimaryKeyObj() {
157         return _tagsProperty.getPrimaryKeyObj();
158     }
159 
160     public java.lang.Object clone() {
161         return _tagsProperty.clone();
162     }
163 
164     public int compareTo(
165         com.liferay.portlet.tags.model.TagsProperty tagsProperty) {
166         return _tagsProperty.compareTo(tagsProperty);
167     }
168 
169     public int hashCode() {
170         return _tagsProperty.hashCode();
171     }
172 
173     public java.lang.String toString() {
174         return _tagsProperty.toString();
175     }
176 
177     public java.lang.String toXmlString() {
178         return _tagsProperty.toXmlString();
179     }
180 
181     public TagsProperty getWrappedTagsProperty() {
182         return _tagsProperty;
183     }
184 
185     private TagsProperty _tagsProperty;
186 }