Package com.liferay.account.service
Interface AccountEntryUserRelService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
AccountEntryUserRelServiceWrapper
@AccessControlled
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface AccountEntryUserRelService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for AccountEntryUserRel. 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 TypeMethodDescriptionaddAccountEntryUserRel
(long accountEntryId, long creatorUserId, String screenName, String emailAddress, Locale locale, String firstName, String middleName, String lastName, long prefixListTypeId, long suffixListTypeId, String jobTitle, com.liferay.portal.kernel.service.ServiceContext serviceContext) addAccountEntryUserRelByEmailAddress
(long accountEntryId, String emailAddress, long[] accountRoleIds, String userExternalReferenceCode, com.liferay.portal.kernel.service.ServiceContext serviceContext) void
addAccountEntryUserRels
(long accountEntryId, long[] accountUserIds) addPersonTypeAccountEntryUserRel
(long accountEntryId, long creatorUserId, String screenName, String emailAddress, Locale locale, String firstName, String middleName, String lastName, long prefixListTypeId, long suffixListTypeId, String jobTitle, com.liferay.portal.kernel.service.ServiceContext serviceContext) void
deleteAccountEntryUserRelByEmailAddress
(long accountEntryId, String emailAddress) void
deleteAccountEntryUserRels
(long accountEntryId, long[] accountUserIds) fetchAccountEntryUserRel
(long accountEntryUserRelId) fetchAccountEntryUserRel
(long accountEntryId, long accountUserId) getAccountEntryUserRel
(long accountEntryId, long accountUserId) getAccountEntryUserRelsByAccountEntryId
(long accountEntryId) getAccountEntryUserRelsByAccountEntryId
(long accountEntryId, int start, int end) getAccountEntryUserRelsByAccountUserId
(long accountUserId) long
getAccountEntryUserRelsCountByAccountEntryId
(long accountEntryId) Returns the OSGi service identifier.void
inviteUser
(long accountEntryId, long[] accountRoleIds, String emailAddress, com.liferay.portal.kernel.model.User inviter, com.liferay.portal.kernel.service.ServiceContext serviceContext) void
setPersonTypeAccountEntryUser
(long accountEntryId, long userId)
-
Method Details
-
addAccountEntryUserRel
AccountEntryUserRel addAccountEntryUserRel(long accountEntryId, long creatorUserId, String screenName, String emailAddress, Locale locale, String firstName, String middleName, String lastName, long prefixListTypeId, long suffixListTypeId, String jobTitle, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
addAccountEntryUserRelByEmailAddress
AccountEntryUserRel addAccountEntryUserRelByEmailAddress(long accountEntryId, String emailAddress, long[] accountRoleIds, String userExternalReferenceCode, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
addAccountEntryUserRels
void addAccountEntryUserRels(long accountEntryId, long[] accountUserIds) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
addPersonTypeAccountEntryUserRel
AccountEntryUserRel addPersonTypeAccountEntryUserRel(long accountEntryId, long creatorUserId, String screenName, String emailAddress, Locale locale, String firstName, String middleName, String lastName, long prefixListTypeId, long suffixListTypeId, String jobTitle, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteAccountEntryUserRelByEmailAddress
void deleteAccountEntryUserRelByEmailAddress(long accountEntryId, String emailAddress) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteAccountEntryUserRels
void deleteAccountEntryUserRels(long accountEntryId, long[] accountUserIds) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
fetchAccountEntryUserRel
@Transactional(propagation=SUPPORTS, readOnly=true) AccountEntryUserRel fetchAccountEntryUserRel(long accountEntryUserRelId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
fetchAccountEntryUserRel
@Transactional(propagation=SUPPORTS, readOnly=true) AccountEntryUserRel fetchAccountEntryUserRel(long accountEntryId, long accountUserId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAccountEntryUserRel
@Transactional(propagation=SUPPORTS, readOnly=true) AccountEntryUserRel getAccountEntryUserRel(long accountEntryId, long accountUserId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAccountEntryUserRelsByAccountEntryId
@Transactional(propagation=SUPPORTS, readOnly=true) List<AccountEntryUserRel> getAccountEntryUserRelsByAccountEntryId(long accountEntryId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAccountEntryUserRelsByAccountEntryId
@Transactional(propagation=SUPPORTS, readOnly=true) List<AccountEntryUserRel> getAccountEntryUserRelsByAccountEntryId(long accountEntryId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAccountEntryUserRelsByAccountUserId
@Transactional(propagation=SUPPORTS, readOnly=true) List<AccountEntryUserRel> getAccountEntryUserRelsByAccountUserId(long accountUserId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAccountEntryUserRelsCountByAccountEntryId
@Transactional(propagation=SUPPORTS, readOnly=true) long getAccountEntryUserRelsCountByAccountEntryId(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
-
inviteUser
void inviteUser(long accountEntryId, long[] accountRoleIds, String emailAddress, com.liferay.portal.kernel.model.User inviter, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
setPersonTypeAccountEntryUser
void setPersonTypeAccountEntryUser(long accountEntryId, long userId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-