Interface DDLRecordSetVersionService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
DDLRecordSetVersionServiceWrapper
@AccessControlled
@CTAware
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface DDLRecordSetVersionService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for DDLRecordSetVersion. 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 TypeMethodDescriptiongetLatestRecordSetVersion
(long recordSetId) Returns the OSGi service identifier.getRecordSetVersion
(long recordSetVersionId) getRecordSetVersions
(long recordSetId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDLRecordSetVersion> orderByComparator) int
getRecordSetVersionsCount
(long recordSetId)
-
Method Details
-
getLatestRecordSetVersion
@Transactional(propagation=SUPPORTS, readOnly=true) DDLRecordSetVersion getLatestRecordSetVersion(long recordSetId) 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
-
getRecordSetVersion
@Transactional(propagation=SUPPORTS, readOnly=true) DDLRecordSetVersion getRecordSetVersion(long recordSetVersionId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getRecordSetVersions
@Transactional(propagation=SUPPORTS, readOnly=true) List<DDLRecordSetVersion> getRecordSetVersions(long recordSetId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<DDLRecordSetVersion> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getRecordSetVersionsCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getRecordSetVersionsCount(long recordSetId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-