001
014
015 package com.liferay.portal.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019
026 @ProviderType
027 public class RepositoryEntryLocalServiceWrapper
028 implements RepositoryEntryLocalService,
029 ServiceWrapper<RepositoryEntryLocalService> {
030 public RepositoryEntryLocalServiceWrapper(
031 RepositoryEntryLocalService repositoryEntryLocalService) {
032 _repositoryEntryLocalService = repositoryEntryLocalService;
033 }
034
035
041 @Override
042 public com.liferay.portal.model.RepositoryEntry addRepositoryEntry(
043 com.liferay.portal.model.RepositoryEntry repositoryEntry) {
044 return _repositoryEntryLocalService.addRepositoryEntry(repositoryEntry);
045 }
046
047 @Override
048 public com.liferay.portal.model.RepositoryEntry addRepositoryEntry(
049 long userId, long groupId, long repositoryId,
050 java.lang.String mappedId,
051 com.liferay.portal.service.ServiceContext serviceContext)
052 throws com.liferay.portal.kernel.exception.PortalException {
053 return _repositoryEntryLocalService.addRepositoryEntry(userId, groupId,
054 repositoryId, mappedId, serviceContext);
055 }
056
057
063 @Override
064 public com.liferay.portal.model.RepositoryEntry createRepositoryEntry(
065 long repositoryEntryId) {
066 return _repositoryEntryLocalService.createRepositoryEntry(repositoryEntryId);
067 }
068
069
072 @Override
073 public com.liferay.portal.model.PersistedModel deletePersistedModel(
074 com.liferay.portal.model.PersistedModel persistedModel)
075 throws com.liferay.portal.kernel.exception.PortalException {
076 return _repositoryEntryLocalService.deletePersistedModel(persistedModel);
077 }
078
079 @Override
080 public void deleteRepositoryEntries(long repositoryId,
081 java.lang.Iterable<java.lang.String> mappedIds)
082 throws com.liferay.portal.kernel.exception.PortalException {
083 _repositoryEntryLocalService.deleteRepositoryEntries(repositoryId,
084 mappedIds);
085 }
086
087
093 @Override
094 public com.liferay.portal.model.RepositoryEntry deleteRepositoryEntry(
095 com.liferay.portal.model.RepositoryEntry repositoryEntry) {
096 return _repositoryEntryLocalService.deleteRepositoryEntry(repositoryEntry);
097 }
098
099
106 @Override
107 public com.liferay.portal.model.RepositoryEntry deleteRepositoryEntry(
108 long repositoryEntryId)
109 throws com.liferay.portal.kernel.exception.PortalException {
110 return _repositoryEntryLocalService.deleteRepositoryEntry(repositoryEntryId);
111 }
112
113 @Override
114 public void deleteRepositoryEntry(long repositoryId,
115 java.lang.String mappedId)
116 throws com.liferay.portal.kernel.exception.PortalException {
117 _repositoryEntryLocalService.deleteRepositoryEntry(repositoryId,
118 mappedId);
119 }
120
121 @Override
122 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
123 return _repositoryEntryLocalService.dynamicQuery();
124 }
125
126
132 @Override
133 public <T> java.util.List<T> dynamicQuery(
134 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
135 return _repositoryEntryLocalService.dynamicQuery(dynamicQuery);
136 }
137
138
150 @Override
151 public <T> java.util.List<T> dynamicQuery(
152 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
153 int end) {
154 return _repositoryEntryLocalService.dynamicQuery(dynamicQuery, start,
155 end);
156 }
157
158
171 @Override
172 public <T> java.util.List<T> dynamicQuery(
173 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
174 int end,
175 com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) {
176 return _repositoryEntryLocalService.dynamicQuery(dynamicQuery, start,
177 end, orderByComparator);
178 }
179
180
186 @Override
187 public long dynamicQueryCount(
188 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
189 return _repositoryEntryLocalService.dynamicQueryCount(dynamicQuery);
190 }
191
192
199 @Override
200 public long dynamicQueryCount(
201 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
202 com.liferay.portal.kernel.dao.orm.Projection projection) {
203 return _repositoryEntryLocalService.dynamicQueryCount(dynamicQuery,
204 projection);
205 }
206
207 @Override
208 public com.liferay.portal.model.RepositoryEntry fetchRepositoryEntry(
209 long repositoryEntryId) {
210 return _repositoryEntryLocalService.fetchRepositoryEntry(repositoryEntryId);
211 }
212
213
220 @Override
221 public com.liferay.portal.model.RepositoryEntry fetchRepositoryEntryByUuidAndGroupId(
222 java.lang.String uuid, long groupId) {
223 return _repositoryEntryLocalService.fetchRepositoryEntryByUuidAndGroupId(uuid,
224 groupId);
225 }
226
227 @Override
228 public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery() {
229 return _repositoryEntryLocalService.getActionableDynamicQuery();
230 }
231
232 @Override
233 public com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery getExportActionableDynamicQuery(
234 com.liferay.portlet.exportimport.lar.PortletDataContext portletDataContext) {
235 return _repositoryEntryLocalService.getExportActionableDynamicQuery(portletDataContext);
236 }
237
238
243 @Override
244 public java.lang.String getOSGiServiceIdentifier() {
245 return _repositoryEntryLocalService.getOSGiServiceIdentifier();
246 }
247
248 @Override
249 public com.liferay.portal.model.PersistedModel getPersistedModel(
250 java.io.Serializable primaryKeyObj)
251 throws com.liferay.portal.kernel.exception.PortalException {
252 return _repositoryEntryLocalService.getPersistedModel(primaryKeyObj);
253 }
254
255 @Override
256 public java.util.List<com.liferay.portal.model.RepositoryEntry> getRepositoryEntries(
257 long repositoryId) {
258 return _repositoryEntryLocalService.getRepositoryEntries(repositoryId);
259 }
260
261
272 @Override
273 public java.util.List<com.liferay.portal.model.RepositoryEntry> getRepositoryEntries(
274 int start, int end) {
275 return _repositoryEntryLocalService.getRepositoryEntries(start, end);
276 }
277
278
285 @Override
286 public java.util.List<com.liferay.portal.model.RepositoryEntry> getRepositoryEntriesByUuidAndCompanyId(
287 java.lang.String uuid, long companyId) {
288 return _repositoryEntryLocalService.getRepositoryEntriesByUuidAndCompanyId(uuid,
289 companyId);
290 }
291
292
302 @Override
303 public java.util.List<com.liferay.portal.model.RepositoryEntry> getRepositoryEntriesByUuidAndCompanyId(
304 java.lang.String uuid, long companyId, int start, int end,
305 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.model.RepositoryEntry> orderByComparator) {
306 return _repositoryEntryLocalService.getRepositoryEntriesByUuidAndCompanyId(uuid,
307 companyId, start, end, orderByComparator);
308 }
309
310
315 @Override
316 public int getRepositoryEntriesCount() {
317 return _repositoryEntryLocalService.getRepositoryEntriesCount();
318 }
319
320
327 @Override
328 public com.liferay.portal.model.RepositoryEntry getRepositoryEntry(
329 long repositoryEntryId)
330 throws com.liferay.portal.kernel.exception.PortalException {
331 return _repositoryEntryLocalService.getRepositoryEntry(repositoryEntryId);
332 }
333
334 @Override
335 public com.liferay.portal.model.RepositoryEntry getRepositoryEntry(
336 long userId, long groupId, long repositoryId, java.lang.String objectId)
337 throws com.liferay.portal.kernel.exception.PortalException {
338 return _repositoryEntryLocalService.getRepositoryEntry(userId, groupId,
339 repositoryId, objectId);
340 }
341
342 @Override
343 public com.liferay.portal.model.RepositoryEntry getRepositoryEntry(
344 java.lang.String uuid, long groupId)
345 throws com.liferay.portal.kernel.exception.PortalException {
346 return _repositoryEntryLocalService.getRepositoryEntry(uuid, groupId);
347 }
348
349
357 @Override
358 public com.liferay.portal.model.RepositoryEntry getRepositoryEntryByUuidAndGroupId(
359 java.lang.String uuid, long groupId)
360 throws com.liferay.portal.kernel.exception.PortalException {
361 return _repositoryEntryLocalService.getRepositoryEntryByUuidAndGroupId(uuid,
362 groupId);
363 }
364
365
371 @Override
372 public com.liferay.portal.model.RepositoryEntry updateRepositoryEntry(
373 com.liferay.portal.model.RepositoryEntry repositoryEntry) {
374 return _repositoryEntryLocalService.updateRepositoryEntry(repositoryEntry);
375 }
376
377 @Override
378 public com.liferay.portal.model.RepositoryEntry updateRepositoryEntry(
379 long repositoryEntryId, java.lang.String mappedId)
380 throws com.liferay.portal.kernel.exception.PortalException {
381 return _repositoryEntryLocalService.updateRepositoryEntry(repositoryEntryId,
382 mappedId);
383 }
384
385
388 @Deprecated
389 public RepositoryEntryLocalService getWrappedRepositoryEntryLocalService() {
390 return _repositoryEntryLocalService;
391 }
392
393
396 @Deprecated
397 public void setWrappedRepositoryEntryLocalService(
398 RepositoryEntryLocalService repositoryEntryLocalService) {
399 _repositoryEntryLocalService = repositoryEntryLocalService;
400 }
401
402 @Override
403 public RepositoryEntryLocalService getWrappedService() {
404 return _repositoryEntryLocalService;
405 }
406
407 @Override
408 public void setWrappedService(
409 RepositoryEntryLocalService repositoryEntryLocalService) {
410 _repositoryEntryLocalService = repositoryEntryLocalService;
411 }
412
413 private RepositoryEntryLocalService _repositoryEntryLocalService;
414 }