Interface COREntryService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
COREntryServiceWrapper
@AccessControlled
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface COREntryService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for COREntry. 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 TypeMethodDescriptionaddCOREntry
(String externalReferenceCode, boolean active, String description, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, String name, int priority, String type, String typeSettings, com.liferay.portal.kernel.service.ServiceContext serviceContext) deleteCOREntry
(long corEntryId) fetchCOREntry
(long corEntryId) fetchCOREntryByExternalReferenceCode
(long companyId, String externalReferenceCode) getCOREntries
(long companyId, boolean active, int start, int end) getCOREntries
(long companyId, boolean active, String type, int start, int end) getCOREntries
(long companyId, String type, int start, int end) getCOREntry
(long corEntryId) Returns the OSGi service identifier.updateCOREntry
(long corEntryId, boolean active, String description, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, String name, int priority, String typeSettings, com.liferay.portal.kernel.service.ServiceContext serviceContext) updateCOREntryExternalReferenceCode
(String externalReferenceCode, long corEntryId) updateCOREntryTypeSettings
(long corEntryId, String typeSettings)
-
Method Details
-
addCOREntry
COREntry addCOREntry(String externalReferenceCode, boolean active, String description, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, String name, int priority, String type, String typeSettings, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteCOREntry
- Throws:
com.liferay.portal.kernel.exception.PortalException
-
fetchCOREntry
@Transactional(propagation=SUPPORTS, readOnly=true) COREntry fetchCOREntry(long corEntryId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
fetchCOREntryByExternalReferenceCode
@Transactional(propagation=SUPPORTS, readOnly=true) COREntry fetchCOREntryByExternalReferenceCode(long companyId, String externalReferenceCode) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getCOREntries
@Transactional(propagation=SUPPORTS, readOnly=true) List<COREntry> getCOREntries(long companyId, boolean active, int start, int end) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getCOREntries
@Transactional(propagation=SUPPORTS, readOnly=true) List<COREntry> getCOREntries(long companyId, boolean active, String type, int start, int end) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getCOREntries
@Transactional(propagation=SUPPORTS, readOnly=true) List<COREntry> getCOREntries(long companyId, String type, int start, int end) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getCOREntry
@Transactional(propagation=SUPPORTS, readOnly=true) COREntry getCOREntry(long corEntryId) 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
-
updateCOREntry
COREntry updateCOREntry(long corEntryId, boolean active, String description, int displayDateMonth, int displayDateDay, int displayDateYear, int displayDateHour, int displayDateMinute, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, String name, int priority, String typeSettings, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
updateCOREntryExternalReferenceCode
COREntry updateCOREntryExternalReferenceCode(String externalReferenceCode, long corEntryId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
updateCOREntryTypeSettings
COREntry updateCOREntryTypeSettings(long corEntryId, String typeSettings) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-