1
14
15 package com.liferay.portlet.tags.service;
16
17
18
34 public class TagsVocabularyServiceWrapper implements TagsVocabularyService {
35 public TagsVocabularyServiceWrapper(
36 TagsVocabularyService tagsVocabularyService) {
37 _tagsVocabularyService = tagsVocabularyService;
38 }
39
40 public com.liferay.portlet.tags.model.TagsVocabulary addVocabulary(
41 java.lang.String name, boolean folksonomy,
42 com.liferay.portal.service.ServiceContext serviceContext)
43 throws com.liferay.portal.PortalException,
44 com.liferay.portal.SystemException {
45 return _tagsVocabularyService.addVocabulary(name, folksonomy,
46 serviceContext);
47 }
48
49 public void deleteVocabulary(long vocabularyId)
50 throws com.liferay.portal.PortalException,
51 com.liferay.portal.SystemException {
52 _tagsVocabularyService.deleteVocabulary(vocabularyId);
53 }
54
55 public java.util.List<com.liferay.portlet.tags.model.TagsVocabulary> getCompanyVocabularies(
56 long companyId, boolean folksonomy)
57 throws com.liferay.portal.PortalException,
58 com.liferay.portal.SystemException {
59 return _tagsVocabularyService.getCompanyVocabularies(companyId,
60 folksonomy);
61 }
62
63 public java.util.List<com.liferay.portlet.tags.model.TagsVocabulary> getGroupVocabularies(
64 long groupId, boolean folksonomy)
65 throws com.liferay.portal.PortalException,
66 com.liferay.portal.SystemException {
67 return _tagsVocabularyService.getGroupVocabularies(groupId, folksonomy);
68 }
69
70 public com.liferay.portlet.tags.model.TagsVocabulary getVocabulary(
71 long vocabularyId)
72 throws com.liferay.portal.PortalException,
73 com.liferay.portal.SystemException {
74 return _tagsVocabularyService.getVocabulary(vocabularyId);
75 }
76
77 public com.liferay.portlet.tags.model.TagsVocabulary updateVocabulary(
78 long vocabularyId, java.lang.String name, boolean folksonomy)
79 throws com.liferay.portal.PortalException,
80 com.liferay.portal.SystemException {
81 return _tagsVocabularyService.updateVocabulary(vocabularyId, name,
82 folksonomy);
83 }
84
85 public TagsVocabularyService getWrappedTagsVocabularyService() {
86 return _tagsVocabularyService;
87 }
88
89 private TagsVocabularyService _tagsVocabularyService;
90 }