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