1
14
15 package com.liferay.portlet.tags.model;
16
17
33 public class TagsVocabularyWrapper implements TagsVocabulary {
34 public TagsVocabularyWrapper(TagsVocabulary tagsVocabulary) {
35 _tagsVocabulary = tagsVocabulary;
36 }
37
38 public long getPrimaryKey() {
39 return _tagsVocabulary.getPrimaryKey();
40 }
41
42 public void setPrimaryKey(long pk) {
43 _tagsVocabulary.setPrimaryKey(pk);
44 }
45
46 public long getVocabularyId() {
47 return _tagsVocabulary.getVocabularyId();
48 }
49
50 public void setVocabularyId(long vocabularyId) {
51 _tagsVocabulary.setVocabularyId(vocabularyId);
52 }
53
54 public long getGroupId() {
55 return _tagsVocabulary.getGroupId();
56 }
57
58 public void setGroupId(long groupId) {
59 _tagsVocabulary.setGroupId(groupId);
60 }
61
62 public long getCompanyId() {
63 return _tagsVocabulary.getCompanyId();
64 }
65
66 public void setCompanyId(long companyId) {
67 _tagsVocabulary.setCompanyId(companyId);
68 }
69
70 public long getUserId() {
71 return _tagsVocabulary.getUserId();
72 }
73
74 public void setUserId(long userId) {
75 _tagsVocabulary.setUserId(userId);
76 }
77
78 public java.lang.String getUserUuid()
79 throws com.liferay.portal.SystemException {
80 return _tagsVocabulary.getUserUuid();
81 }
82
83 public void setUserUuid(java.lang.String userUuid) {
84 _tagsVocabulary.setUserUuid(userUuid);
85 }
86
87 public java.lang.String getUserName() {
88 return _tagsVocabulary.getUserName();
89 }
90
91 public void setUserName(java.lang.String userName) {
92 _tagsVocabulary.setUserName(userName);
93 }
94
95 public java.util.Date getCreateDate() {
96 return _tagsVocabulary.getCreateDate();
97 }
98
99 public void setCreateDate(java.util.Date createDate) {
100 _tagsVocabulary.setCreateDate(createDate);
101 }
102
103 public java.util.Date getModifiedDate() {
104 return _tagsVocabulary.getModifiedDate();
105 }
106
107 public void setModifiedDate(java.util.Date modifiedDate) {
108 _tagsVocabulary.setModifiedDate(modifiedDate);
109 }
110
111 public java.lang.String getName() {
112 return _tagsVocabulary.getName();
113 }
114
115 public void setName(java.lang.String name) {
116 _tagsVocabulary.setName(name);
117 }
118
119 public java.lang.String getDescription() {
120 return _tagsVocabulary.getDescription();
121 }
122
123 public void setDescription(java.lang.String description) {
124 _tagsVocabulary.setDescription(description);
125 }
126
127 public boolean getFolksonomy() {
128 return _tagsVocabulary.getFolksonomy();
129 }
130
131 public boolean isFolksonomy() {
132 return _tagsVocabulary.isFolksonomy();
133 }
134
135 public void setFolksonomy(boolean folksonomy) {
136 _tagsVocabulary.setFolksonomy(folksonomy);
137 }
138
139 public boolean isNew() {
140 return _tagsVocabulary.isNew();
141 }
142
143 public boolean setNew(boolean n) {
144 return _tagsVocabulary.setNew(n);
145 }
146
147 public boolean isCachedModel() {
148 return _tagsVocabulary.isCachedModel();
149 }
150
151 public void setCachedModel(boolean cachedModel) {
152 _tagsVocabulary.setCachedModel(cachedModel);
153 }
154
155 public boolean isEscapedModel() {
156 return _tagsVocabulary.isEscapedModel();
157 }
158
159 public void setEscapedModel(boolean escapedModel) {
160 _tagsVocabulary.setEscapedModel(escapedModel);
161 }
162
163 public java.io.Serializable getPrimaryKeyObj() {
164 return _tagsVocabulary.getPrimaryKeyObj();
165 }
166
167 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
168 return _tagsVocabulary.getExpandoBridge();
169 }
170
171 public void setExpandoBridgeAttributes(
172 com.liferay.portal.service.ServiceContext serviceContext) {
173 _tagsVocabulary.setExpandoBridgeAttributes(serviceContext);
174 }
175
176 public java.lang.Object clone() {
177 return _tagsVocabulary.clone();
178 }
179
180 public int compareTo(
181 com.liferay.portlet.tags.model.TagsVocabulary tagsVocabulary) {
182 return _tagsVocabulary.compareTo(tagsVocabulary);
183 }
184
185 public int hashCode() {
186 return _tagsVocabulary.hashCode();
187 }
188
189 public com.liferay.portlet.tags.model.TagsVocabulary toEscapedModel() {
190 return _tagsVocabulary.toEscapedModel();
191 }
192
193 public java.lang.String toString() {
194 return _tagsVocabulary.toString();
195 }
196
197 public java.lang.String toXmlString() {
198 return _tagsVocabulary.toXmlString();
199 }
200
201 public TagsVocabulary getWrappedTagsVocabulary() {
202 return _tagsVocabulary;
203 }
204
205 private TagsVocabulary _tagsVocabulary;
206 }