Liferay 7.0-ce-m3

com.liferay.portlet.dynamicdatamapping.service
Interface DDMStructureVersionService

All Superinterfaces:
BaseService
All Known Implementing Classes:
DDMStructureVersionServiceBaseImpl, DDMStructureVersionServiceImpl, DDMStructureVersionServiceWrapper

@AccessControlled
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface DDMStructureVersionService
extends BaseService

Provides the remote service interface for DDMStructureVersion. 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:
DDMStructureVersionServiceUtil, DDMStructureVersionServiceBaseImpl, DDMStructureVersionServiceImpl
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.
 DDMStructureVersion getLatestStructureVersion(long structureId)
           
 DDMStructureVersion getStructureVersion(long structureVersionId)
           
 List<DDMStructureVersion> getStructureVersions(long structureId, int start, int end, OrderByComparator<DDMStructureVersion> orderByComparator)
           
 int getStructureVersionsCount(long structureId)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 

Method Detail

getBeanIdentifier

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

Returns:
the Spring bean ID for this bean

getLatestStructureVersion

@Transactional(propagation=SUPPORTS,
               readOnly=true)
DDMStructureVersion getLatestStructureVersion(long structureId)
                                              throws PortalException
Throws:
PortalException

getStructureVersion

@Transactional(propagation=SUPPORTS,
               readOnly=true)
DDMStructureVersion getStructureVersion(long structureVersionId)
                                        throws PortalException
Throws:
PortalException

getStructureVersions

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<DDMStructureVersion> getStructureVersions(long structureId,
                                                                                        int start,
                                                                                        int end,
                                                                                        OrderByComparator<DDMStructureVersion> orderByComparator)
                                               throws PortalException
Throws:
PortalException

getStructureVersionsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getStructureVersionsCount(long structureId)
                              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

Liferay 7.0-ce-m3