Package com.liferay.audiences.service
Interface AudiencesEntryService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
AudiencesEntryServiceWrapper
@AccessControlled
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface AudiencesEntryService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for AudiencesEntry. 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 TypeMethodDescriptionaddAudiencesEntry(String externalReferenceCode, String json, String name, com.liferay.portal.kernel.service.ServiceContext serviceContext) deleteAudiencesEntry(long audiencesEntryId) getAudiencesEntries(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AudiencesEntry> orderByComparator) getAudiencesEntries(long companyId, String name, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AudiencesEntry> orderByComparator) intgetAudiencesEntriesCount(long companyId) intgetAudiencesEntriesCount(long companyId, String name) getAudiencesEntry(long audiencesEntryId) Returns the OSGi service identifier.updateAudiencesEntry(long audiencesEntryId, String json, String name)
-
Method Details
-
addAudiencesEntry
AudiencesEntry addAudiencesEntry(String externalReferenceCode, String json, String name, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteAudiencesEntry
AudiencesEntry deleteAudiencesEntry(long audiencesEntryId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAudiencesEntries
@Transactional(propagation=SUPPORTS, readOnly=true) List<AudiencesEntry> getAudiencesEntries(long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AudiencesEntry> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAudiencesEntries
@Transactional(propagation=SUPPORTS, readOnly=true) List<AudiencesEntry> getAudiencesEntries(long companyId, String name, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AudiencesEntry> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAudiencesEntriesCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getAudiencesEntriesCount(long companyId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAudiencesEntriesCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getAudiencesEntriesCount(long companyId, String name) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getAudiencesEntry
@Transactional(propagation=SUPPORTS, readOnly=true) AudiencesEntry getAudiencesEntry(long audiencesEntryId) 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
-
updateAudiencesEntry
AudiencesEntry updateAudiencesEntry(long audiencesEntryId, String json, String name) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-