1
14
15 package com.liferay.portlet.tags.service;
16
17
33 public class TagsEntryLocalServiceWrapper implements TagsEntryLocalService {
34 public TagsEntryLocalServiceWrapper(
35 TagsEntryLocalService tagsEntryLocalService) {
36 _tagsEntryLocalService = tagsEntryLocalService;
37 }
38
39 public com.liferay.portlet.tags.model.TagsEntry addTagsEntry(
40 com.liferay.portlet.tags.model.TagsEntry tagsEntry)
41 throws com.liferay.portal.SystemException {
42 return _tagsEntryLocalService.addTagsEntry(tagsEntry);
43 }
44
45 public com.liferay.portlet.tags.model.TagsEntry createTagsEntry(
46 long entryId) {
47 return _tagsEntryLocalService.createTagsEntry(entryId);
48 }
49
50 public void deleteTagsEntry(long entryId)
51 throws com.liferay.portal.PortalException,
52 com.liferay.portal.SystemException {
53 _tagsEntryLocalService.deleteTagsEntry(entryId);
54 }
55
56 public void deleteTagsEntry(
57 com.liferay.portlet.tags.model.TagsEntry tagsEntry)
58 throws com.liferay.portal.SystemException {
59 _tagsEntryLocalService.deleteTagsEntry(tagsEntry);
60 }
61
62 @SuppressWarnings("rawtypes")
63 public java.util.List dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return _tagsEntryLocalService.dynamicQuery(dynamicQuery);
67 }
68
69 @SuppressWarnings("rawtypes")
70 public java.util.List dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.SystemException {
73 return _tagsEntryLocalService.dynamicQuery(dynamicQuery, start, end);
74 }
75
76 @SuppressWarnings("rawtypes")
77 public java.util.List dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end,
80 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81 throws com.liferay.portal.SystemException {
82 return _tagsEntryLocalService.dynamicQuery(dynamicQuery, start, end,
83 orderByComparator);
84 }
85
86 public int dynamicQueryCount(
87 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88 throws com.liferay.portal.SystemException {
89 return _tagsEntryLocalService.dynamicQueryCount(dynamicQuery);
90 }
91
92 public com.liferay.portlet.tags.model.TagsEntry getTagsEntry(long entryId)
93 throws com.liferay.portal.PortalException,
94 com.liferay.portal.SystemException {
95 return _tagsEntryLocalService.getTagsEntry(entryId);
96 }
97
98 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getTagsEntries(
99 int start, int end) throws com.liferay.portal.SystemException {
100 return _tagsEntryLocalService.getTagsEntries(start, end);
101 }
102
103 public int getTagsEntriesCount() throws com.liferay.portal.SystemException {
104 return _tagsEntryLocalService.getTagsEntriesCount();
105 }
106
107 public com.liferay.portlet.tags.model.TagsEntry updateTagsEntry(
108 com.liferay.portlet.tags.model.TagsEntry tagsEntry)
109 throws com.liferay.portal.SystemException {
110 return _tagsEntryLocalService.updateTagsEntry(tagsEntry);
111 }
112
113 public com.liferay.portlet.tags.model.TagsEntry updateTagsEntry(
114 com.liferay.portlet.tags.model.TagsEntry tagsEntry, boolean merge)
115 throws com.liferay.portal.SystemException {
116 return _tagsEntryLocalService.updateTagsEntry(tagsEntry, merge);
117 }
118
119 public com.liferay.portlet.tags.model.TagsEntry addEntry(long userId,
120 java.lang.String parentEntryName, java.lang.String name,
121 java.lang.String vocabularyName, java.lang.String[] properties,
122 com.liferay.portal.service.ServiceContext serviceContext)
123 throws com.liferay.portal.PortalException,
124 com.liferay.portal.SystemException {
125 return _tagsEntryLocalService.addEntry(userId, parentEntryName, name,
126 vocabularyName, properties, serviceContext);
127 }
128
129 public void addEntryResources(
130 com.liferay.portlet.tags.model.TagsEntry entry,
131 boolean addCommunityPermissions, boolean addGuestPermissions)
132 throws com.liferay.portal.PortalException,
133 com.liferay.portal.SystemException {
134 _tagsEntryLocalService.addEntryResources(entry,
135 addCommunityPermissions, addGuestPermissions);
136 }
137
138 public void addEntryResources(
139 com.liferay.portlet.tags.model.TagsEntry entry,
140 java.lang.String[] communityPermissions,
141 java.lang.String[] guestPermissions)
142 throws com.liferay.portal.PortalException,
143 com.liferay.portal.SystemException {
144 _tagsEntryLocalService.addEntryResources(entry, communityPermissions,
145 guestPermissions);
146 }
147
148 public void checkEntries(long userId, long groupId, java.lang.String[] names)
149 throws com.liferay.portal.PortalException,
150 com.liferay.portal.SystemException {
151 _tagsEntryLocalService.checkEntries(userId, groupId, names);
152 }
153
154 public void deleteEntry(long entryId)
155 throws com.liferay.portal.PortalException,
156 com.liferay.portal.SystemException {
157 _tagsEntryLocalService.deleteEntry(entryId);
158 }
159
160 public void deleteEntry(com.liferay.portlet.tags.model.TagsEntry entry)
161 throws com.liferay.portal.PortalException,
162 com.liferay.portal.SystemException {
163 _tagsEntryLocalService.deleteEntry(entry);
164 }
165
166 public void deleteVocabularyEntries(long vocabularyId)
167 throws com.liferay.portal.PortalException,
168 com.liferay.portal.SystemException {
169 _tagsEntryLocalService.deleteVocabularyEntries(vocabularyId);
170 }
171
172 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getAssetEntries(
173 long assetId, boolean folksonomy)
174 throws com.liferay.portal.SystemException {
175 return _tagsEntryLocalService.getAssetEntries(assetId, folksonomy);
176 }
177
178 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries()
179 throws com.liferay.portal.SystemException {
180 return _tagsEntryLocalService.getEntries();
181 }
182
183 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
184 boolean folksonomy) throws com.liferay.portal.SystemException {
185 return _tagsEntryLocalService.getEntries(folksonomy);
186 }
187
188 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
189 long classNameId, long classPK)
190 throws com.liferay.portal.SystemException {
191 return _tagsEntryLocalService.getEntries(classNameId, classPK);
192 }
193
194 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
195 long classNameId, long classPK, boolean folksonomy)
196 throws com.liferay.portal.SystemException {
197 return _tagsEntryLocalService.getEntries(classNameId, classPK,
198 folksonomy);
199 }
200
201 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
202 long groupId, long classNameId, java.lang.String name)
203 throws com.liferay.portal.SystemException {
204 return _tagsEntryLocalService.getEntries(groupId, classNameId, name);
205 }
206
207 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
208 long groupId, long classNameId, java.lang.String name, int start,
209 int end) throws com.liferay.portal.SystemException {
210 return _tagsEntryLocalService.getEntries(groupId, classNameId, name,
211 start, end);
212 }
213
214 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
215 java.lang.String className, long classPK)
216 throws com.liferay.portal.SystemException {
217 return _tagsEntryLocalService.getEntries(className, classPK);
218 }
219
220 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
221 java.lang.String className, long classPK, boolean folksonomy)
222 throws com.liferay.portal.SystemException {
223 return _tagsEntryLocalService.getEntries(className, classPK, folksonomy);
224 }
225
226 public int getEntriesSize(long groupId, long classNameId,
227 java.lang.String name) throws com.liferay.portal.SystemException {
228 return _tagsEntryLocalService.getEntriesSize(groupId, classNameId, name);
229 }
230
231 public com.liferay.portlet.tags.model.TagsEntry getEntry(long entryId)
232 throws com.liferay.portal.PortalException,
233 com.liferay.portal.SystemException {
234 return _tagsEntryLocalService.getEntry(entryId);
235 }
236
237 public com.liferay.portlet.tags.model.TagsEntry getEntry(long groupId,
238 java.lang.String name)
239 throws com.liferay.portal.PortalException,
240 com.liferay.portal.SystemException {
241 return _tagsEntryLocalService.getEntry(groupId, name);
242 }
243
244 public com.liferay.portlet.tags.model.TagsEntry getEntry(long groupId,
245 java.lang.String name, boolean folksonomy)
246 throws com.liferay.portal.PortalException,
247 com.liferay.portal.SystemException {
248 return _tagsEntryLocalService.getEntry(groupId, name, folksonomy);
249 }
250
251 public long[] getEntryIds(long groupId, java.lang.String[] names)
252 throws com.liferay.portal.PortalException,
253 com.liferay.portal.SystemException {
254 return _tagsEntryLocalService.getEntryIds(groupId, names);
255 }
256
257 public long[] getEntryIds(long groupId, java.lang.String[] names,
258 boolean folksonomy)
259 throws com.liferay.portal.PortalException,
260 com.liferay.portal.SystemException {
261 return _tagsEntryLocalService.getEntryIds(groupId, names, folksonomy);
262 }
263
264 public java.lang.String[] getEntryNames()
265 throws com.liferay.portal.SystemException {
266 return _tagsEntryLocalService.getEntryNames();
267 }
268
269 public java.lang.String[] getEntryNames(boolean folksonomy)
270 throws com.liferay.portal.SystemException {
271 return _tagsEntryLocalService.getEntryNames(folksonomy);
272 }
273
274 public java.lang.String[] getEntryNames(long classNameId, long classPK)
275 throws com.liferay.portal.SystemException {
276 return _tagsEntryLocalService.getEntryNames(classNameId, classPK);
277 }
278
279 public java.lang.String[] getEntryNames(long classNameId, long classPK,
280 boolean folksonomy) throws com.liferay.portal.SystemException {
281 return _tagsEntryLocalService.getEntryNames(classNameId, classPK,
282 folksonomy);
283 }
284
285 public java.lang.String[] getEntryNames(java.lang.String className,
286 long classPK) throws com.liferay.portal.SystemException {
287 return _tagsEntryLocalService.getEntryNames(className, classPK);
288 }
289
290 public java.lang.String[] getEntryNames(java.lang.String className,
291 long classPK, boolean folksonomy)
292 throws com.liferay.portal.SystemException {
293 return _tagsEntryLocalService.getEntryNames(className, classPK,
294 folksonomy);
295 }
296
297 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getGroupVocabularyEntries(
298 long groupId, java.lang.String vocabularyName)
299 throws com.liferay.portal.PortalException,
300 com.liferay.portal.SystemException {
301 return _tagsEntryLocalService.getGroupVocabularyEntries(groupId,
302 vocabularyName);
303 }
304
305 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getGroupVocabularyEntries(
306 long groupId, java.lang.String parentEntryName,
307 java.lang.String vocabularyName)
308 throws com.liferay.portal.PortalException,
309 com.liferay.portal.SystemException {
310 return _tagsEntryLocalService.getGroupVocabularyEntries(groupId,
311 parentEntryName, vocabularyName);
312 }
313
314 public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getGroupVocabularyRootEntries(
315 long groupId, java.lang.String vocabularyName)
316 throws com.liferay.portal.PortalException,
317 com.liferay.portal.SystemException {
318 return _tagsEntryLocalService.getGroupVocabularyRootEntries(groupId,
319 vocabularyName);
320 }
321
322 public boolean hasEntry(long groupId, java.lang.String name,
323 boolean folksonomy)
324 throws com.liferay.portal.PortalException,
325 com.liferay.portal.SystemException {
326 return _tagsEntryLocalService.hasEntry(groupId, name, folksonomy);
327 }
328
329 public void mergeEntries(long fromEntryId, long toEntryId)
330 throws com.liferay.portal.PortalException,
331 com.liferay.portal.SystemException {
332 _tagsEntryLocalService.mergeEntries(fromEntryId, toEntryId);
333 }
334
335 public com.liferay.portal.kernel.json.JSONArray search(long groupId,
336 java.lang.String name, java.lang.String[] properties, int start, int end)
337 throws com.liferay.portal.SystemException {
338 return _tagsEntryLocalService.search(groupId, name, properties, start,
339 end);
340 }
341
342 public com.liferay.portlet.tags.model.TagsEntry updateEntry(long userId,
343 long entryId, java.lang.String parentEntryName, java.lang.String name,
344 java.lang.String vocabularyName, java.lang.String[] properties)
345 throws com.liferay.portal.PortalException,
346 com.liferay.portal.SystemException {
347 return _tagsEntryLocalService.updateEntry(userId, entryId,
348 parentEntryName, name, vocabularyName, properties);
349 }
350
351 public TagsEntryLocalService getWrappedTagsEntryLocalService() {
352 return _tagsEntryLocalService;
353 }
354
355 private TagsEntryLocalService _tagsEntryLocalService;
356 }