Package com.liferay.depot.service
Interface DepotEntryGroupRelService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
DepotEntryGroupRelServiceWrapper
@AccessControlled
@CTAware
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface DepotEntryGroupRelService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for DepotEntryGroupRel. 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 TypeMethodDescriptionaddDepotEntryGroupRel
(long depotEntryId, long toGroupId) deleteDepotEntryGroupRel
(long depotEntryGroupRelId) getDepotEntryGroupRelByDepotEntryIdToGroupId
(long depotEntryId, long toGroupId) getDepotEntryGroupRels
(long groupId, int start, int end) getDepotEntryGroupRels
(DepotEntry depotEntry, int start, int end) int
getDepotEntryGroupRelsCount
(long groupId) int
getDepotEntryGroupRelsCount
(DepotEntry depotEntry) Returns the OSGi service identifier.updateDDMStructuresAvailable
(long depotEntryGroupRelId, boolean ddmStructuresAvailable) updateSearchable
(long depotEntryGroupRelId, boolean searchable)
-
Method Details
-
addDepotEntryGroupRel
DepotEntryGroupRel addDepotEntryGroupRel(long depotEntryId, long toGroupId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteDepotEntryGroupRel
DepotEntryGroupRel deleteDepotEntryGroupRel(long depotEntryGroupRelId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getDepotEntryGroupRelByDepotEntryIdToGroupId
@Transactional(propagation=SUPPORTS, readOnly=true) DepotEntryGroupRel getDepotEntryGroupRelByDepotEntryIdToGroupId(long depotEntryId, long toGroupId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getDepotEntryGroupRels
@Transactional(propagation=SUPPORTS, readOnly=true) List<DepotEntryGroupRel> getDepotEntryGroupRels(DepotEntry depotEntry, int start, int end) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getDepotEntryGroupRels
@Transactional(propagation=SUPPORTS, readOnly=true) List<DepotEntryGroupRel> getDepotEntryGroupRels(long groupId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getDepotEntryGroupRelsCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getDepotEntryGroupRelsCount(DepotEntry depotEntry) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getDepotEntryGroupRelsCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getDepotEntryGroupRelsCount(long groupId) 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
-
updateDDMStructuresAvailable
DepotEntryGroupRel updateDDMStructuresAvailable(long depotEntryGroupRelId, boolean ddmStructuresAvailable) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
updateSearchable
DepotEntryGroupRel updateSearchable(long depotEntryGroupRelId, boolean searchable) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-