1
22
23 package com.liferay.portlet.tags.model;
24
25
26
42 public class TagsEntryWrapper implements TagsEntry {
43 public TagsEntryWrapper(TagsEntry tagsEntry) {
44 _tagsEntry = tagsEntry;
45 }
46
47 public long getPrimaryKey() {
48 return _tagsEntry.getPrimaryKey();
49 }
50
51 public void setPrimaryKey(long pk) {
52 _tagsEntry.setPrimaryKey(pk);
53 }
54
55 public long getEntryId() {
56 return _tagsEntry.getEntryId();
57 }
58
59 public void setEntryId(long entryId) {
60 _tagsEntry.setEntryId(entryId);
61 }
62
63 public long getGroupId() {
64 return _tagsEntry.getGroupId();
65 }
66
67 public void setGroupId(long groupId) {
68 _tagsEntry.setGroupId(groupId);
69 }
70
71 public long getCompanyId() {
72 return _tagsEntry.getCompanyId();
73 }
74
75 public void setCompanyId(long companyId) {
76 _tagsEntry.setCompanyId(companyId);
77 }
78
79 public long getUserId() {
80 return _tagsEntry.getUserId();
81 }
82
83 public void setUserId(long userId) {
84 _tagsEntry.setUserId(userId);
85 }
86
87 public java.lang.String getUserUuid()
88 throws com.liferay.portal.SystemException {
89 return _tagsEntry.getUserUuid();
90 }
91
92 public void setUserUuid(java.lang.String userUuid) {
93 _tagsEntry.setUserUuid(userUuid);
94 }
95
96 public java.lang.String getUserName() {
97 return _tagsEntry.getUserName();
98 }
99
100 public void setUserName(java.lang.String userName) {
101 _tagsEntry.setUserName(userName);
102 }
103
104 public java.util.Date getCreateDate() {
105 return _tagsEntry.getCreateDate();
106 }
107
108 public void setCreateDate(java.util.Date createDate) {
109 _tagsEntry.setCreateDate(createDate);
110 }
111
112 public java.util.Date getModifiedDate() {
113 return _tagsEntry.getModifiedDate();
114 }
115
116 public void setModifiedDate(java.util.Date modifiedDate) {
117 _tagsEntry.setModifiedDate(modifiedDate);
118 }
119
120 public long getParentEntryId() {
121 return _tagsEntry.getParentEntryId();
122 }
123
124 public void setParentEntryId(long parentEntryId) {
125 _tagsEntry.setParentEntryId(parentEntryId);
126 }
127
128 public java.lang.String getName() {
129 return _tagsEntry.getName();
130 }
131
132 public void setName(java.lang.String name) {
133 _tagsEntry.setName(name);
134 }
135
136 public long getVocabularyId() {
137 return _tagsEntry.getVocabularyId();
138 }
139
140 public void setVocabularyId(long vocabularyId) {
141 _tagsEntry.setVocabularyId(vocabularyId);
142 }
143
144 public com.liferay.portlet.tags.model.TagsEntry toEscapedModel() {
145 return _tagsEntry.toEscapedModel();
146 }
147
148 public boolean isNew() {
149 return _tagsEntry.isNew();
150 }
151
152 public boolean setNew(boolean n) {
153 return _tagsEntry.setNew(n);
154 }
155
156 public boolean isCachedModel() {
157 return _tagsEntry.isCachedModel();
158 }
159
160 public void setCachedModel(boolean cachedModel) {
161 _tagsEntry.setCachedModel(cachedModel);
162 }
163
164 public boolean isEscapedModel() {
165 return _tagsEntry.isEscapedModel();
166 }
167
168 public void setEscapedModel(boolean escapedModel) {
169 _tagsEntry.setEscapedModel(escapedModel);
170 }
171
172 public java.io.Serializable getPrimaryKeyObj() {
173 return _tagsEntry.getPrimaryKeyObj();
174 }
175
176 public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
177 return _tagsEntry.getExpandoBridge();
178 }
179
180 public void setExpandoBridgeAttributes(
181 com.liferay.portal.service.ServiceContext serviceContext) {
182 _tagsEntry.setExpandoBridgeAttributes(serviceContext);
183 }
184
185 public java.lang.Object clone() {
186 return _tagsEntry.clone();
187 }
188
189 public int compareTo(com.liferay.portlet.tags.model.TagsEntry tagsEntry) {
190 return _tagsEntry.compareTo(tagsEntry);
191 }
192
193 public int hashCode() {
194 return _tagsEntry.hashCode();
195 }
196
197 public java.lang.String toString() {
198 return _tagsEntry.toString();
199 }
200
201 public java.lang.String toXmlString() {
202 return _tagsEntry.toXmlString();
203 }
204
205 public java.lang.String getParentName()
206 throws com.liferay.portal.PortalException,
207 com.liferay.portal.SystemException {
208 return _tagsEntry.getParentName();
209 }
210
211 public com.liferay.portlet.tags.model.TagsVocabulary getVocabulary()
212 throws com.liferay.portal.PortalException,
213 com.liferay.portal.SystemException {
214 return _tagsEntry.getVocabulary();
215 }
216
217 public boolean isCategory()
218 throws com.liferay.portal.PortalException,
219 com.liferay.portal.SystemException {
220 return _tagsEntry.isCategory();
221 }
222
223 public TagsEntry getWrappedTagsEntry() {
224 return _tagsEntry;
225 }
226
227 private TagsEntry _tagsEntry;
228 }