1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.tags.service;
16  
17  
18  /**
19   * <a href="TagsEntryLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link TagsEntryLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       TagsEntryLocalService
32   * @generated
33   */
34  public class TagsEntryLocalServiceWrapper implements TagsEntryLocalService {
35      public TagsEntryLocalServiceWrapper(
36          TagsEntryLocalService tagsEntryLocalService) {
37          _tagsEntryLocalService = tagsEntryLocalService;
38      }
39  
40      public com.liferay.portlet.tags.model.TagsEntry addTagsEntry(
41          com.liferay.portlet.tags.model.TagsEntry tagsEntry)
42          throws com.liferay.portal.SystemException {
43          return _tagsEntryLocalService.addTagsEntry(tagsEntry);
44      }
45  
46      public com.liferay.portlet.tags.model.TagsEntry createTagsEntry(
47          long entryId) {
48          return _tagsEntryLocalService.createTagsEntry(entryId);
49      }
50  
51      public void deleteTagsEntry(long entryId)
52          throws com.liferay.portal.PortalException,
53              com.liferay.portal.SystemException {
54          _tagsEntryLocalService.deleteTagsEntry(entryId);
55      }
56  
57      public void deleteTagsEntry(
58          com.liferay.portlet.tags.model.TagsEntry tagsEntry)
59          throws com.liferay.portal.SystemException {
60          _tagsEntryLocalService.deleteTagsEntry(tagsEntry);
61      }
62  
63      public java.util.List<Object> dynamicQuery(
64          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65          throws com.liferay.portal.SystemException {
66          return _tagsEntryLocalService.dynamicQuery(dynamicQuery);
67      }
68  
69      public java.util.List<Object> dynamicQuery(
70          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71          int end) throws com.liferay.portal.SystemException {
72          return _tagsEntryLocalService.dynamicQuery(dynamicQuery, start, end);
73      }
74  
75      public java.util.List<Object> dynamicQuery(
76          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
77          int end,
78          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
79          throws com.liferay.portal.SystemException {
80          return _tagsEntryLocalService.dynamicQuery(dynamicQuery, start, end,
81              orderByComparator);
82      }
83  
84      public int dynamicQueryCount(
85          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
86          throws com.liferay.portal.SystemException {
87          return _tagsEntryLocalService.dynamicQueryCount(dynamicQuery);
88      }
89  
90      public com.liferay.portlet.tags.model.TagsEntry getTagsEntry(long entryId)
91          throws com.liferay.portal.PortalException,
92              com.liferay.portal.SystemException {
93          return _tagsEntryLocalService.getTagsEntry(entryId);
94      }
95  
96      public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getTagsEntries(
97          int start, int end) throws com.liferay.portal.SystemException {
98          return _tagsEntryLocalService.getTagsEntries(start, end);
99      }
100 
101     public int getTagsEntriesCount() throws com.liferay.portal.SystemException {
102         return _tagsEntryLocalService.getTagsEntriesCount();
103     }
104 
105     public com.liferay.portlet.tags.model.TagsEntry updateTagsEntry(
106         com.liferay.portlet.tags.model.TagsEntry tagsEntry)
107         throws com.liferay.portal.SystemException {
108         return _tagsEntryLocalService.updateTagsEntry(tagsEntry);
109     }
110 
111     public com.liferay.portlet.tags.model.TagsEntry updateTagsEntry(
112         com.liferay.portlet.tags.model.TagsEntry tagsEntry, boolean merge)
113         throws com.liferay.portal.SystemException {
114         return _tagsEntryLocalService.updateTagsEntry(tagsEntry, merge);
115     }
116 
117     public com.liferay.portlet.tags.model.TagsEntry addEntry(long userId,
118         java.lang.String parentEntryName, java.lang.String name,
119         java.lang.String vocabularyName, java.lang.String[] properties,
120         com.liferay.portal.service.ServiceContext serviceContext)
121         throws com.liferay.portal.PortalException,
122             com.liferay.portal.SystemException {
123         return _tagsEntryLocalService.addEntry(userId, parentEntryName, name,
124             vocabularyName, properties, serviceContext);
125     }
126 
127     public void addEntryResources(
128         com.liferay.portlet.tags.model.TagsEntry entry,
129         boolean addCommunityPermissions, boolean addGuestPermissions)
130         throws com.liferay.portal.PortalException,
131             com.liferay.portal.SystemException {
132         _tagsEntryLocalService.addEntryResources(entry,
133             addCommunityPermissions, addGuestPermissions);
134     }
135 
136     public void addEntryResources(
137         com.liferay.portlet.tags.model.TagsEntry entry,
138         java.lang.String[] communityPermissions,
139         java.lang.String[] guestPermissions)
140         throws com.liferay.portal.PortalException,
141             com.liferay.portal.SystemException {
142         _tagsEntryLocalService.addEntryResources(entry, communityPermissions,
143             guestPermissions);
144     }
145 
146     public void checkEntries(long userId, long groupId, java.lang.String[] names)
147         throws com.liferay.portal.PortalException,
148             com.liferay.portal.SystemException {
149         _tagsEntryLocalService.checkEntries(userId, groupId, names);
150     }
151 
152     public void deleteEntry(long entryId)
153         throws com.liferay.portal.PortalException,
154             com.liferay.portal.SystemException {
155         _tagsEntryLocalService.deleteEntry(entryId);
156     }
157 
158     public void deleteEntry(com.liferay.portlet.tags.model.TagsEntry entry)
159         throws com.liferay.portal.PortalException,
160             com.liferay.portal.SystemException {
161         _tagsEntryLocalService.deleteEntry(entry);
162     }
163 
164     public void deleteVocabularyEntries(long vocabularyId)
165         throws com.liferay.portal.PortalException,
166             com.liferay.portal.SystemException {
167         _tagsEntryLocalService.deleteVocabularyEntries(vocabularyId);
168     }
169 
170     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getAssetEntries(
171         long assetId, boolean folksonomy)
172         throws com.liferay.portal.SystemException {
173         return _tagsEntryLocalService.getAssetEntries(assetId, folksonomy);
174     }
175 
176     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries()
177         throws com.liferay.portal.SystemException {
178         return _tagsEntryLocalService.getEntries();
179     }
180 
181     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
182         boolean folksonomy) throws com.liferay.portal.SystemException {
183         return _tagsEntryLocalService.getEntries(folksonomy);
184     }
185 
186     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
187         long classNameId, long classPK)
188         throws com.liferay.portal.SystemException {
189         return _tagsEntryLocalService.getEntries(classNameId, classPK);
190     }
191 
192     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
193         long classNameId, long classPK, boolean folksonomy)
194         throws com.liferay.portal.SystemException {
195         return _tagsEntryLocalService.getEntries(classNameId, classPK,
196             folksonomy);
197     }
198 
199     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
200         long groupId, long classNameId, java.lang.String name)
201         throws com.liferay.portal.SystemException {
202         return _tagsEntryLocalService.getEntries(groupId, classNameId, name);
203     }
204 
205     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
206         long groupId, long classNameId, java.lang.String name, int start,
207         int end) throws com.liferay.portal.SystemException {
208         return _tagsEntryLocalService.getEntries(groupId, classNameId, name,
209             start, end);
210     }
211 
212     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
213         java.lang.String className, long classPK)
214         throws com.liferay.portal.SystemException {
215         return _tagsEntryLocalService.getEntries(className, classPK);
216     }
217 
218     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getEntries(
219         java.lang.String className, long classPK, boolean folksonomy)
220         throws com.liferay.portal.SystemException {
221         return _tagsEntryLocalService.getEntries(className, classPK, folksonomy);
222     }
223 
224     public int getEntriesSize(long groupId, long classNameId,
225         java.lang.String name) throws com.liferay.portal.SystemException {
226         return _tagsEntryLocalService.getEntriesSize(groupId, classNameId, name);
227     }
228 
229     public com.liferay.portlet.tags.model.TagsEntry getEntry(long entryId)
230         throws com.liferay.portal.PortalException,
231             com.liferay.portal.SystemException {
232         return _tagsEntryLocalService.getEntry(entryId);
233     }
234 
235     public com.liferay.portlet.tags.model.TagsEntry getEntry(long groupId,
236         java.lang.String name)
237         throws com.liferay.portal.PortalException,
238             com.liferay.portal.SystemException {
239         return _tagsEntryLocalService.getEntry(groupId, name);
240     }
241 
242     public com.liferay.portlet.tags.model.TagsEntry getEntry(long groupId,
243         java.lang.String name, boolean folksonomy)
244         throws com.liferay.portal.PortalException,
245             com.liferay.portal.SystemException {
246         return _tagsEntryLocalService.getEntry(groupId, name, folksonomy);
247     }
248 
249     public long[] getEntryIds(long groupId, java.lang.String[] names)
250         throws com.liferay.portal.PortalException,
251             com.liferay.portal.SystemException {
252         return _tagsEntryLocalService.getEntryIds(groupId, names);
253     }
254 
255     public long[] getEntryIds(long groupId, java.lang.String[] names,
256         boolean folksonomy)
257         throws com.liferay.portal.PortalException,
258             com.liferay.portal.SystemException {
259         return _tagsEntryLocalService.getEntryIds(groupId, names, folksonomy);
260     }
261 
262     public java.lang.String[] getEntryNames()
263         throws com.liferay.portal.SystemException {
264         return _tagsEntryLocalService.getEntryNames();
265     }
266 
267     public java.lang.String[] getEntryNames(boolean folksonomy)
268         throws com.liferay.portal.SystemException {
269         return _tagsEntryLocalService.getEntryNames(folksonomy);
270     }
271 
272     public java.lang.String[] getEntryNames(long classNameId, long classPK)
273         throws com.liferay.portal.SystemException {
274         return _tagsEntryLocalService.getEntryNames(classNameId, classPK);
275     }
276 
277     public java.lang.String[] getEntryNames(long classNameId, long classPK,
278         boolean folksonomy) throws com.liferay.portal.SystemException {
279         return _tagsEntryLocalService.getEntryNames(classNameId, classPK,
280             folksonomy);
281     }
282 
283     public java.lang.String[] getEntryNames(java.lang.String className,
284         long classPK) throws com.liferay.portal.SystemException {
285         return _tagsEntryLocalService.getEntryNames(className, classPK);
286     }
287 
288     public java.lang.String[] getEntryNames(java.lang.String className,
289         long classPK, boolean folksonomy)
290         throws com.liferay.portal.SystemException {
291         return _tagsEntryLocalService.getEntryNames(className, classPK,
292             folksonomy);
293     }
294 
295     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getGroupVocabularyEntries(
296         long groupId, java.lang.String vocabularyName)
297         throws com.liferay.portal.PortalException,
298             com.liferay.portal.SystemException {
299         return _tagsEntryLocalService.getGroupVocabularyEntries(groupId,
300             vocabularyName);
301     }
302 
303     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getGroupVocabularyEntries(
304         long groupId, java.lang.String parentEntryName,
305         java.lang.String vocabularyName)
306         throws com.liferay.portal.PortalException,
307             com.liferay.portal.SystemException {
308         return _tagsEntryLocalService.getGroupVocabularyEntries(groupId,
309             parentEntryName, vocabularyName);
310     }
311 
312     public java.util.List<com.liferay.portlet.tags.model.TagsEntry> getGroupVocabularyRootEntries(
313         long groupId, java.lang.String vocabularyName)
314         throws com.liferay.portal.PortalException,
315             com.liferay.portal.SystemException {
316         return _tagsEntryLocalService.getGroupVocabularyRootEntries(groupId,
317             vocabularyName);
318     }
319 
320     public boolean hasEntry(long groupId, java.lang.String name,
321         boolean folksonomy)
322         throws com.liferay.portal.PortalException,
323             com.liferay.portal.SystemException {
324         return _tagsEntryLocalService.hasEntry(groupId, name, folksonomy);
325     }
326 
327     public void mergeEntries(long fromEntryId, long toEntryId)
328         throws com.liferay.portal.PortalException,
329             com.liferay.portal.SystemException {
330         _tagsEntryLocalService.mergeEntries(fromEntryId, toEntryId);
331     }
332 
333     public com.liferay.portal.kernel.json.JSONArray search(long groupId,
334         java.lang.String name, java.lang.String[] properties, int start, int end)
335         throws com.liferay.portal.SystemException {
336         return _tagsEntryLocalService.search(groupId, name, properties, start,
337             end);
338     }
339 
340     public com.liferay.portlet.tags.model.TagsEntry updateEntry(long userId,
341         long entryId, java.lang.String parentEntryName, java.lang.String name,
342         java.lang.String vocabularyName, java.lang.String[] properties)
343         throws com.liferay.portal.PortalException,
344             com.liferay.portal.SystemException {
345         return _tagsEntryLocalService.updateEntry(userId, entryId,
346             parentEntryName, name, vocabularyName, properties);
347     }
348 
349     public TagsEntryLocalService getWrappedTagsEntryLocalService() {
350         return _tagsEntryLocalService;
351     }
352 
353     private TagsEntryLocalService _tagsEntryLocalService;
354 }