001
014
015 package com.liferay.portlet.documentlibrary.service;
016
017
026 public class DLFileShortcutLocalServiceWrapper
027 implements DLFileShortcutLocalService {
028 public DLFileShortcutLocalServiceWrapper(
029 DLFileShortcutLocalService dlFileShortcutLocalService) {
030 _dlFileShortcutLocalService = dlFileShortcutLocalService;
031 }
032
033
040 public com.liferay.portlet.documentlibrary.model.DLFileShortcut addDLFileShortcut(
041 com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut)
042 throws com.liferay.portal.kernel.exception.SystemException {
043 return _dlFileShortcutLocalService.addDLFileShortcut(dlFileShortcut);
044 }
045
046
052 public com.liferay.portlet.documentlibrary.model.DLFileShortcut createDLFileShortcut(
053 long fileShortcutId) {
054 return _dlFileShortcutLocalService.createDLFileShortcut(fileShortcutId);
055 }
056
057
064 public void deleteDLFileShortcut(long fileShortcutId)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 _dlFileShortcutLocalService.deleteDLFileShortcut(fileShortcutId);
068 }
069
070
076 public void deleteDLFileShortcut(
077 com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut)
078 throws com.liferay.portal.kernel.exception.SystemException {
079 _dlFileShortcutLocalService.deleteDLFileShortcut(dlFileShortcut);
080 }
081
082
089 @SuppressWarnings("rawtypes")
090 public java.util.List dynamicQuery(
091 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
092 throws com.liferay.portal.kernel.exception.SystemException {
093 return _dlFileShortcutLocalService.dynamicQuery(dynamicQuery);
094 }
095
096
109 @SuppressWarnings("rawtypes")
110 public java.util.List dynamicQuery(
111 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
112 int end) throws com.liferay.portal.kernel.exception.SystemException {
113 return _dlFileShortcutLocalService.dynamicQuery(dynamicQuery, start, end);
114 }
115
116
130 @SuppressWarnings("rawtypes")
131 public java.util.List dynamicQuery(
132 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
133 int end,
134 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
135 throws com.liferay.portal.kernel.exception.SystemException {
136 return _dlFileShortcutLocalService.dynamicQuery(dynamicQuery, start,
137 end, orderByComparator);
138 }
139
140
147 public long dynamicQueryCount(
148 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
149 throws com.liferay.portal.kernel.exception.SystemException {
150 return _dlFileShortcutLocalService.dynamicQueryCount(dynamicQuery);
151 }
152
153
161 public com.liferay.portlet.documentlibrary.model.DLFileShortcut getDLFileShortcut(
162 long fileShortcutId)
163 throws com.liferay.portal.kernel.exception.PortalException,
164 com.liferay.portal.kernel.exception.SystemException {
165 return _dlFileShortcutLocalService.getDLFileShortcut(fileShortcutId);
166 }
167
168
177 public com.liferay.portlet.documentlibrary.model.DLFileShortcut getDLFileShortcutByUuidAndGroupId(
178 java.lang.String uuid, long groupId)
179 throws com.liferay.portal.kernel.exception.PortalException,
180 com.liferay.portal.kernel.exception.SystemException {
181 return _dlFileShortcutLocalService.getDLFileShortcutByUuidAndGroupId(uuid,
182 groupId);
183 }
184
185
197 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileShortcut> getDLFileShortcuts(
198 int start, int end)
199 throws com.liferay.portal.kernel.exception.SystemException {
200 return _dlFileShortcutLocalService.getDLFileShortcuts(start, end);
201 }
202
203
209 public int getDLFileShortcutsCount()
210 throws com.liferay.portal.kernel.exception.SystemException {
211 return _dlFileShortcutLocalService.getDLFileShortcutsCount();
212 }
213
214
221 public com.liferay.portlet.documentlibrary.model.DLFileShortcut updateDLFileShortcut(
222 com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut)
223 throws com.liferay.portal.kernel.exception.SystemException {
224 return _dlFileShortcutLocalService.updateDLFileShortcut(dlFileShortcut);
225 }
226
227
235 public com.liferay.portlet.documentlibrary.model.DLFileShortcut updateDLFileShortcut(
236 com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut,
237 boolean merge)
238 throws com.liferay.portal.kernel.exception.SystemException {
239 return _dlFileShortcutLocalService.updateDLFileShortcut(dlFileShortcut,
240 merge);
241 }
242
243 public com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
244 long userId, long groupId, long folderId, long toFolderId,
245 java.lang.String toName,
246 com.liferay.portal.service.ServiceContext serviceContext)
247 throws com.liferay.portal.kernel.exception.PortalException,
248 com.liferay.portal.kernel.exception.SystemException {
249 return _dlFileShortcutLocalService.addFileShortcut(userId, groupId,
250 folderId, toFolderId, toName, serviceContext);
251 }
252
253 public void addFileShortcutResources(
254 com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut,
255 boolean addCommunityPermissions, boolean addGuestPermissions)
256 throws com.liferay.portal.kernel.exception.PortalException,
257 com.liferay.portal.kernel.exception.SystemException {
258 _dlFileShortcutLocalService.addFileShortcutResources(fileShortcut,
259 addCommunityPermissions, addGuestPermissions);
260 }
261
262 public void addFileShortcutResources(
263 com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut,
264 java.lang.String[] communityPermissions,
265 java.lang.String[] guestPermissions)
266 throws com.liferay.portal.kernel.exception.PortalException,
267 com.liferay.portal.kernel.exception.SystemException {
268 _dlFileShortcutLocalService.addFileShortcutResources(fileShortcut,
269 communityPermissions, guestPermissions);
270 }
271
272 public void addFileShortcutResources(long fileShortcutId,
273 boolean addCommunityPermissions, boolean addGuestPermissions)
274 throws com.liferay.portal.kernel.exception.PortalException,
275 com.liferay.portal.kernel.exception.SystemException {
276 _dlFileShortcutLocalService.addFileShortcutResources(fileShortcutId,
277 addCommunityPermissions, addGuestPermissions);
278 }
279
280 public void addFileShortcutResources(long fileShortcutId,
281 java.lang.String[] communityPermissions,
282 java.lang.String[] guestPermissions)
283 throws com.liferay.portal.kernel.exception.PortalException,
284 com.liferay.portal.kernel.exception.SystemException {
285 _dlFileShortcutLocalService.addFileShortcutResources(fileShortcutId,
286 communityPermissions, guestPermissions);
287 }
288
289 public void deleteFileShortcut(
290 com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut)
291 throws com.liferay.portal.kernel.exception.PortalException,
292 com.liferay.portal.kernel.exception.SystemException {
293 _dlFileShortcutLocalService.deleteFileShortcut(fileShortcut);
294 }
295
296 public void deleteFileShortcut(long fileShortcutId)
297 throws com.liferay.portal.kernel.exception.PortalException,
298 com.liferay.portal.kernel.exception.SystemException {
299 _dlFileShortcutLocalService.deleteFileShortcut(fileShortcutId);
300 }
301
302 public void deleteFileShortcuts(long groupId, long toFolderId,
303 java.lang.String toName)
304 throws com.liferay.portal.kernel.exception.PortalException,
305 com.liferay.portal.kernel.exception.SystemException {
306 _dlFileShortcutLocalService.deleteFileShortcuts(groupId, toFolderId,
307 toName);
308 }
309
310 public com.liferay.portlet.documentlibrary.model.DLFileShortcut getFileShortcut(
311 long fileShortcutId)
312 throws com.liferay.portal.kernel.exception.PortalException,
313 com.liferay.portal.kernel.exception.SystemException {
314 return _dlFileShortcutLocalService.getFileShortcut(fileShortcutId);
315 }
316
317 public void updateAsset(long userId,
318 com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut,
319 long[] assetCategoryIds, java.lang.String[] assetTagNames)
320 throws com.liferay.portal.kernel.exception.PortalException,
321 com.liferay.portal.kernel.exception.SystemException {
322 _dlFileShortcutLocalService.updateAsset(userId, fileShortcut,
323 assetCategoryIds, assetTagNames);
324 }
325
326 public com.liferay.portlet.documentlibrary.model.DLFileShortcut updateFileShortcut(
327 long userId, long fileShortcutId, long folderId, long toFolderId,
328 java.lang.String toName,
329 com.liferay.portal.service.ServiceContext serviceContext)
330 throws com.liferay.portal.kernel.exception.PortalException,
331 com.liferay.portal.kernel.exception.SystemException {
332 return _dlFileShortcutLocalService.updateFileShortcut(userId,
333 fileShortcutId, folderId, toFolderId, toName, serviceContext);
334 }
335
336 public void updateFileShortcuts(long groupId, long oldToFolderId,
337 java.lang.String oldToName, long newToFolderId,
338 java.lang.String newToName)
339 throws com.liferay.portal.kernel.exception.SystemException {
340 _dlFileShortcutLocalService.updateFileShortcuts(groupId, oldToFolderId,
341 oldToName, newToFolderId, newToName);
342 }
343
344 public DLFileShortcutLocalService getWrappedDLFileShortcutLocalService() {
345 return _dlFileShortcutLocalService;
346 }
347
348 private DLFileShortcutLocalService _dlFileShortcutLocalService;
349 }