Package com.liferay.segments.service
Interface SegmentsEntryRelService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
SegmentsEntryRelServiceWrapper
@AccessControlled
@CTAware
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface SegmentsEntryRelService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for SegmentsEntryRel. 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 TypeMethodDescriptionReturns the OSGi service identifier.getSegmentsEntryRels
(long segmentsEntryId) getSegmentsEntryRels
(long segmentsEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<SegmentsEntryRel> orderByComparator) getSegmentsEntryRels
(long groupId, long classNameId, long classPK) int
getSegmentsEntryRelsCount
(long segmentsEntryId) int
getSegmentsEntryRelsCount
(long groupId, long classNameId, long classPK) boolean
hasSegmentsEntryRel
(long segmentsEntryId, long classNameId, long classPK)
-
Method Details
-
getOSGiServiceIdentifier
String getOSGiServiceIdentifier()Returns the OSGi service identifier.- Returns:
- the OSGi service identifier
-
getSegmentsEntryRels
@Transactional(propagation=SUPPORTS, readOnly=true) List<SegmentsEntryRel> getSegmentsEntryRels(long segmentsEntryId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getSegmentsEntryRels
@Transactional(propagation=SUPPORTS, readOnly=true) List<SegmentsEntryRel> getSegmentsEntryRels(long segmentsEntryId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<SegmentsEntryRel> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getSegmentsEntryRels
@Transactional(propagation=SUPPORTS, readOnly=true) List<SegmentsEntryRel> getSegmentsEntryRels(long groupId, long classNameId, long classPK) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getSegmentsEntryRelsCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getSegmentsEntryRelsCount(long segmentsEntryId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getSegmentsEntryRelsCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getSegmentsEntryRelsCount(long groupId, long classNameId, long classPK) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
hasSegmentsEntryRel
@Transactional(propagation=SUPPORTS, readOnly=true) boolean hasSegmentsEntryRel(long segmentsEntryId, long classNameId, long classPK)
-