Interface BatchPlannerPolicyService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
BatchPlannerPolicyServiceWrapper
@AccessControlled
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface BatchPlannerPolicyService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for BatchPlannerPolicy. 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 TypeMethodDescriptionaddBatchPlannerPolicy(long batchPlannerPlanId, String name, String value) deleteBatchPlannerPolicy(long batchPlannerPlanId, String name) getBatchPlannerPolicies(long batchPlannerPlanId) getBatchPlannerPolicy(long batchPlannerPlanId, String name) Returns the OSGi service identifier.booleanhasBatchPlannerPolicy(long batchPlannerPlanId, String name) updateBatchPlannerPolicy(long batchPlannerPlanId, String name, String value)
-
Method Details
-
addBatchPlannerPolicy
BatchPlannerPolicy addBatchPlannerPolicy(long batchPlannerPlanId, String name, String value) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteBatchPlannerPolicy
BatchPlannerPolicy deleteBatchPlannerPolicy(long batchPlannerPlanId, String name) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getBatchPlannerPolicies
@Transactional(propagation=SUPPORTS, readOnly=true) List<BatchPlannerPolicy> getBatchPlannerPolicies(long batchPlannerPlanId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getBatchPlannerPolicy
@Transactional(propagation=SUPPORTS, readOnly=true) BatchPlannerPolicy getBatchPlannerPolicy(long batchPlannerPlanId, String name) 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
-
hasBatchPlannerPolicy
@Transactional(propagation=SUPPORTS, readOnly=true) boolean hasBatchPlannerPolicy(long batchPlannerPlanId, String name) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
updateBatchPlannerPolicy
BatchPlannerPolicy updateBatchPlannerPolicy(long batchPlannerPlanId, String name, String value) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-