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