Package com.liferay.list.type.service
Interface ListTypeEntryService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
ListTypeEntryServiceWrapper
@AccessControlled
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface ListTypeEntryService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for ListTypeEntry. 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 TypeMethodDescriptionaddListTypeEntry
(String externalReferenceCode, long listTypeDefinitionId, String key, Map<Locale, String> nameMap) deleteListTypeEntry
(long listTypeEntryId) getListTypeEntries
(long listTypeDefinitionId, int start, int end) int
getListTypeEntriesCount
(long listTypeDefinitionId) getListTypeEntry
(long listTypeEntryId) getListTypeEntryByExternalReferenceCode
(String externalReferenceCode, long companyId, long listTypeDefinitionId) Returns the OSGi service identifier.updateListTypeEntry
(String externalReferenceCode, long listTypeEntryId, Map<Locale, String> nameMap)
-
Method Details
-
addListTypeEntry
ListTypeEntry addListTypeEntry(String externalReferenceCode, long listTypeDefinitionId, String key, Map<Locale, String> nameMap) throws com.liferay.portal.kernel.exception.PortalException- Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteListTypeEntry
ListTypeEntry deleteListTypeEntry(long listTypeEntryId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getListTypeEntries
@Transactional(propagation=SUPPORTS, readOnly=true) List<ListTypeEntry> getListTypeEntries(long listTypeDefinitionId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getListTypeEntriesCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getListTypeEntriesCount(long listTypeDefinitionId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getListTypeEntry
@Transactional(propagation=SUPPORTS, readOnly=true) ListTypeEntry getListTypeEntry(long listTypeEntryId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getListTypeEntryByExternalReferenceCode
@Transactional(propagation=SUPPORTS, readOnly=true) ListTypeEntry getListTypeEntryByExternalReferenceCode(String externalReferenceCode, long companyId, long listTypeDefinitionId) 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
-
updateListTypeEntry
ListTypeEntry updateListTypeEntry(String externalReferenceCode, long listTypeEntryId, Map<Locale, String> nameMap) throws com.liferay.portal.kernel.exception.PortalException- Throws:
com.liferay.portal.kernel.exception.PortalException
-