Package com.liferay.account.service
Interface AccountEntryOrganizationRelService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
AccountEntryOrganizationRelServiceWrapper
@AccessControlled
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface AccountEntryOrganizationRelService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for AccountEntryOrganizationRel. 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 TypeMethodDescriptionaddAccountEntryOrganizationRel
(long accountEntryId, long organizationId) void
addAccountEntryOrganizationRels
(long accountEntryId, long[] organizationIds) void
deleteAccountEntryOrganizationRel
(long accountEntryId, long organizationId) void
deleteAccountEntryOrganizationRels
(long accountEntryId, long[] organizationIds) fetchAccountEntryOrganizationRel
(long accountEntryOrganizationRelId) fetchAccountEntryOrganizationRel
(long accountEntryId, long organizationId) getAccountEntryOrganizationRel
(long accountEntryId, long organizationId) getAccountEntryOrganizationRels
(long accountEntryId, int start, int end) int
getAccountEntryOrganizationRelsCount
(long accountEntryId) Returns the OSGi service identifier.
-
Method Details
-
addAccountEntryOrganizationRel
AccountEntryOrganizationRel addAccountEntryOrganizationRel(long accountEntryId, long organizationId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
addAccountEntryOrganizationRels
void addAccountEntryOrganizationRels(long accountEntryId, long[] organizationIds) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteAccountEntryOrganizationRel
void deleteAccountEntryOrganizationRel(long accountEntryId, long organizationId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteAccountEntryOrganizationRels
void deleteAccountEntryOrganizationRels(long accountEntryId, long[] organizationIds) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
fetchAccountEntryOrganizationRel
@Transactional(propagation=SUPPORTS, readOnly=true) AccountEntryOrganizationRel fetchAccountEntryOrganizationRel(long accountEntryOrganizationRelId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
fetchAccountEntryOrganizationRel
@Transactional(propagation=SUPPORTS, readOnly=true) AccountEntryOrganizationRel fetchAccountEntryOrganizationRel(long accountEntryId, long organizationId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAccountEntryOrganizationRel
@Transactional(propagation=SUPPORTS, readOnly=true) AccountEntryOrganizationRel getAccountEntryOrganizationRel(long accountEntryId, long organizationId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAccountEntryOrganizationRels
@Transactional(propagation=SUPPORTS, readOnly=true) List<AccountEntryOrganizationRel> getAccountEntryOrganizationRels(long accountEntryId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAccountEntryOrganizationRelsCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getAccountEntryOrganizationRelsCount(long accountEntryId) 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
-