Interface CTProcessService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
CTProcessServiceWrapper
@AccessControlled
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface CTProcessService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for CTProcess. 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 TypeMethodDescriptiondeleteCTProcess
(long ctProcessId) getCTProcesses
(long companyId, long userId, String keywords, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CTProcess> orderByComparator) int
getCTProcessesCount
(long companyId, long userId, String keywords, int status) Returns the OSGi service identifier.
-
Method Details
-
deleteCTProcess
CTProcess deleteCTProcess(long ctProcessId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getCTProcesses
@Transactional(propagation=SUPPORTS, readOnly=true) List<CTProcess> getCTProcesses(long companyId, long userId, String keywords, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<CTProcess> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getCTProcessesCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getCTProcessesCount(long companyId, long userId, String keywords, int status) -
getOSGiServiceIdentifier
String getOSGiServiceIdentifier()Returns the OSGi service identifier.- Returns:
- the OSGi service identifier
-