Liferay 6.0.5

com.liferay.portlet.documentlibrary.service
Interface DLFileShortcutService

All Known Implementing Classes:
DLFileShortcutServiceBaseImpl, DLFileShortcutServiceImpl, DLFileShortcutServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface DLFileShortcutService

The interface for the d l file shortcut remote service.

Never modify or reference this interface directly. Always use DLFileShortcutServiceUtil to access the d l file shortcut remote service. Add custom service methods to DLFileShortcutServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
DLFileShortcutServiceUtil, DLFileShortcutServiceBaseImpl, DLFileShortcutServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 DLFileShortcut addFileShortcut(long groupId, long folderId, long toFolderId, String toName, ServiceContext serviceContext)
           
 void deleteFileShortcut(long fileShortcutId)
           
 DLFileShortcut getFileShortcut(long fileShortcutId)
           
 DLFileShortcut updateFileShortcut(long fileShortcutId, long folderId, long toFolderId, String toName, ServiceContext serviceContext)
           
 

Method Detail

addFileShortcut

DLFileShortcut addFileShortcut(long groupId,
                               long folderId,
                               long toFolderId,
                               String toName,
                               ServiceContext serviceContext)
                               throws PortalException,
                                      SystemException
Throws:
PortalException
SystemException

deleteFileShortcut

void deleteFileShortcut(long fileShortcutId)
                        throws PortalException,
                               SystemException
Throws:
PortalException
SystemException

getFileShortcut

@Transactional(propagation=SUPPORTS,
               readOnly=true)
DLFileShortcut getFileShortcut(long fileShortcutId)
                               throws PortalException,
                                      SystemException
Throws:
PortalException
SystemException

updateFileShortcut

DLFileShortcut updateFileShortcut(long fileShortcutId,
                                  long folderId,
                                  long toFolderId,
                                  String toName,
                                  ServiceContext serviceContext)
                                  throws PortalException,
                                         SystemException
Throws:
PortalException
SystemException

Liferay 6.0.5