Liferay 7.0-ce-m3

com.liferay.portal.service
Interface CMISRepositoryLocalService

All Superinterfaces:
BaseLocalService
All Known Implementing Classes:
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, com.liferay.portal.service.impl.CMISRepositoryLocalServiceImpl

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

getSession

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

setBeanIdentifier

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

Parameters:
beanIdentifier - the Spring bean ID for this bean

toFileEntry

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

toFileVersion

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

toFolder

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

Liferay 7.0-ce-m3