Interface DDMStructureVersionService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
DDMStructureVersionServiceWrapper
@AccessControlled
@CTAware
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface DDMStructureVersionService
extends com.liferay.portal.kernel.service.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:
- Generated:
-
Method Summary
Modifier and TypeMethodDescriptiongetLatestStructureVersion
(long structureId) Returns the OSGi service identifier.getStructureVersion
(long structureVersionId) getStructureVersions
(long structureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructureVersion> orderByComparator) int
getStructureVersionsCount
(long structureId)
-
Method Details
-
getLatestStructureVersion
@Transactional(propagation=SUPPORTS, readOnly=true) DDMStructureVersion getLatestStructureVersion(long structureId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getOSGiServiceIdentifier
String getOSGiServiceIdentifier()Returns the OSGi service identifier.- Returns:
- the OSGi service identifier
-
getStructureVersion
@Transactional(propagation=SUPPORTS, readOnly=true) DDMStructureVersion getStructureVersion(long structureVersionId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getStructureVersions
@Transactional(propagation=SUPPORTS, readOnly=true) List<DDMStructureVersion> getStructureVersions(long structureId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDMStructureVersion> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getStructureVersionsCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getStructureVersionsCount(long structureId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-