001
014
015 package com.liferay.portlet.asset.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class AssetVocabularyServiceWrapper implements AssetVocabularyService,
029 ServiceWrapper<AssetVocabularyService> {
030 public AssetVocabularyServiceWrapper(
031 AssetVocabularyService assetVocabularyService) {
032 _assetVocabularyService = assetVocabularyService;
033 }
034
035
040 public java.lang.String getBeanIdentifier() {
041 return _assetVocabularyService.getBeanIdentifier();
042 }
043
044
049 public void setBeanIdentifier(java.lang.String beanIdentifier) {
050 _assetVocabularyService.setBeanIdentifier(beanIdentifier);
051 }
052
053
056 public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
057 java.util.Map<java.util.Locale, java.lang.String> titleMap,
058 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
059 java.lang.String settings,
060 com.liferay.portal.service.ServiceContext serviceContext)
061 throws com.liferay.portal.kernel.exception.PortalException,
062 com.liferay.portal.kernel.exception.SystemException {
063 return _assetVocabularyService.addVocabulary(titleMap, descriptionMap,
064 settings, serviceContext);
065 }
066
067 public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
068 java.lang.String title,
069 java.util.Map<java.util.Locale, java.lang.String> titleMap,
070 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
071 java.lang.String settings,
072 com.liferay.portal.service.ServiceContext serviceContext)
073 throws com.liferay.portal.kernel.exception.PortalException,
074 com.liferay.portal.kernel.exception.SystemException {
075 return _assetVocabularyService.addVocabulary(title, titleMap,
076 descriptionMap, settings, serviceContext);
077 }
078
079 public com.liferay.portlet.asset.model.AssetVocabulary addVocabulary(
080 java.lang.String title,
081 com.liferay.portal.service.ServiceContext serviceContext)
082 throws com.liferay.portal.kernel.exception.PortalException,
083 com.liferay.portal.kernel.exception.SystemException {
084 return _assetVocabularyService.addVocabulary(title, serviceContext);
085 }
086
087 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> deleteVocabularies(
088 long[] vocabularyIds,
089 com.liferay.portal.service.ServiceContext serviceContext)
090 throws com.liferay.portal.kernel.exception.PortalException,
091 com.liferay.portal.kernel.exception.SystemException {
092 return _assetVocabularyService.deleteVocabularies(vocabularyIds,
093 serviceContext);
094 }
095
096 public void deleteVocabulary(long vocabularyId)
097 throws com.liferay.portal.kernel.exception.PortalException,
098 com.liferay.portal.kernel.exception.SystemException {
099 _assetVocabularyService.deleteVocabulary(vocabularyId);
100 }
101
102 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getCompanyVocabularies(
103 long companyId)
104 throws com.liferay.portal.kernel.exception.PortalException,
105 com.liferay.portal.kernel.exception.SystemException {
106 return _assetVocabularyService.getCompanyVocabularies(companyId);
107 }
108
109 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupsVocabularies(
110 long[] groupIds)
111 throws com.liferay.portal.kernel.exception.PortalException,
112 com.liferay.portal.kernel.exception.SystemException {
113 return _assetVocabularyService.getGroupsVocabularies(groupIds);
114 }
115
116 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupsVocabularies(
117 long[] groupIds, java.lang.String className)
118 throws com.liferay.portal.kernel.exception.PortalException,
119 com.liferay.portal.kernel.exception.SystemException {
120 return _assetVocabularyService.getGroupsVocabularies(groupIds, className);
121 }
122
123 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
124 long groupId)
125 throws com.liferay.portal.kernel.exception.PortalException,
126 com.liferay.portal.kernel.exception.SystemException {
127 return _assetVocabularyService.getGroupVocabularies(groupId);
128 }
129
130 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
131 long groupId, boolean createDefaultVocabulary)
132 throws com.liferay.portal.kernel.exception.PortalException,
133 com.liferay.portal.kernel.exception.SystemException {
134 return _assetVocabularyService.getGroupVocabularies(groupId,
135 createDefaultVocabulary);
136 }
137
138 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
139 long groupId, int start, int end,
140 com.liferay.portal.kernel.util.OrderByComparator obc)
141 throws com.liferay.portal.kernel.exception.SystemException {
142 return _assetVocabularyService.getGroupVocabularies(groupId, start,
143 end, obc);
144 }
145
146 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getGroupVocabularies(
147 long groupId, java.lang.String name, int start, int end,
148 com.liferay.portal.kernel.util.OrderByComparator obc)
149 throws com.liferay.portal.kernel.exception.SystemException {
150 return _assetVocabularyService.getGroupVocabularies(groupId, name,
151 start, end, obc);
152 }
153
154 public int getGroupVocabulariesCount(long groupId)
155 throws com.liferay.portal.kernel.exception.SystemException {
156 return _assetVocabularyService.getGroupVocabulariesCount(groupId);
157 }
158
159 public int getGroupVocabulariesCount(long groupId, java.lang.String name)
160 throws com.liferay.portal.kernel.exception.SystemException {
161 return _assetVocabularyService.getGroupVocabulariesCount(groupId, name);
162 }
163
164 public com.liferay.portlet.asset.model.AssetVocabularyDisplay getGroupVocabulariesDisplay(
165 long groupId, java.lang.String name, int start, int end,
166 com.liferay.portal.kernel.util.OrderByComparator obc)
167 throws com.liferay.portal.kernel.exception.SystemException {
168 return _assetVocabularyService.getGroupVocabulariesDisplay(groupId,
169 name, start, end, obc);
170 }
171
172 public com.liferay.portal.kernel.json.JSONObject getJSONGroupVocabularies(
173 long groupId, java.lang.String name, int start, int end,
174 com.liferay.portal.kernel.util.OrderByComparator obc)
175 throws com.liferay.portal.kernel.exception.PortalException,
176 com.liferay.portal.kernel.exception.SystemException {
177 return _assetVocabularyService.getJSONGroupVocabularies(groupId, name,
178 start, end, obc);
179 }
180
181 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> getVocabularies(
182 long[] vocabularyIds)
183 throws com.liferay.portal.kernel.exception.PortalException,
184 com.liferay.portal.kernel.exception.SystemException {
185 return _assetVocabularyService.getVocabularies(vocabularyIds);
186 }
187
188 public com.liferay.portlet.asset.model.AssetVocabulary getVocabulary(
189 long vocabularyId)
190 throws com.liferay.portal.kernel.exception.PortalException,
191 com.liferay.portal.kernel.exception.SystemException {
192 return _assetVocabularyService.getVocabulary(vocabularyId);
193 }
194
195
198 public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary(
199 long vocabularyId,
200 java.util.Map<java.util.Locale, java.lang.String> titleMap,
201 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
202 java.lang.String settings,
203 com.liferay.portal.service.ServiceContext serviceContext)
204 throws com.liferay.portal.kernel.exception.PortalException,
205 com.liferay.portal.kernel.exception.SystemException {
206 return _assetVocabularyService.updateVocabulary(vocabularyId, titleMap,
207 descriptionMap, settings, serviceContext);
208 }
209
210 public com.liferay.portlet.asset.model.AssetVocabulary updateVocabulary(
211 long vocabularyId, java.lang.String title,
212 java.util.Map<java.util.Locale, java.lang.String> titleMap,
213 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
214 java.lang.String settings,
215 com.liferay.portal.service.ServiceContext serviceContext)
216 throws com.liferay.portal.kernel.exception.PortalException,
217 com.liferay.portal.kernel.exception.SystemException {
218 return _assetVocabularyService.updateVocabulary(vocabularyId, title,
219 titleMap, descriptionMap, settings, serviceContext);
220 }
221
222
225 public AssetVocabularyService getWrappedAssetVocabularyService() {
226 return _assetVocabularyService;
227 }
228
229
232 public void setWrappedAssetVocabularyService(
233 AssetVocabularyService assetVocabularyService) {
234 _assetVocabularyService = assetVocabularyService;
235 }
236
237 public AssetVocabularyService getWrappedService() {
238 return _assetVocabularyService;
239 }
240
241 public void setWrappedService(AssetVocabularyService assetVocabularyService) {
242 _assetVocabularyService = assetVocabularyService;
243 }
244
245 private AssetVocabularyService _assetVocabularyService;
246 }