Liferay 6.1.2-ce-ga3

com.liferay.portal.service
Interface CMISRepositoryLocalService

All Superinterfaces:
BaseLocalService
All Known Implementing Classes:
CMISRepositoryLocalServiceBaseImpl, CMISRepositoryLocalServiceImpl, CMISRepositoryLocalServiceWrapper

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

The interface for the c m i s repository local service.

This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.

See Also:
CMISRepositoryLocalServiceUtil, CMISRepositoryLocalServiceBaseImpl, CMISRepositoryLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 Object getSession(long repositoryId)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 FileEntry toFileEntry(long repositoryId, Object object)
           
 FileVersion toFileVersion(long repositoryId, Object object)
           
 Folder toFolder(long repositoryId, Object object)
           
 

Method Detail

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

getSession

@Transactional(propagation=SUPPORTS,
               readOnly=true)
Object getSession(long repositoryId)
                  throws PortalException,
                         SystemException
Throws:
PortalException
SystemException

toFileEntry

FileEntry toFileEntry(long repositoryId,
                      Object object)
                      throws PortalException,
                             SystemException
Throws:
PortalException
SystemException

toFileVersion

FileVersion toFileVersion(long repositoryId,
                          Object object)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

toFolder

Folder toFolder(long repositoryId,
                Object object)
                throws PortalException,
                       SystemException
Throws:
PortalException
SystemException

Liferay 6.1.2-ce-ga3