Liferay 6.2.0

com.liferay.portal.service
Interface CMISRepositoryLocalService

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

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

Provides the local service interface for CMISRepository. 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
abstract  String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
abstract  Object getSession(long repositoryId)
           
abstract  void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
abstract  FileEntry toFileEntry(long repositoryId, Object object)
           
abstract  FileVersion toFileVersion(long repositoryId, Object object)
           
abstract  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.2.0