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