Interface CSDiagramPinService
- All Superinterfaces:
com.liferay.portal.kernel.service.BaseService
- All Known Implementing Classes:
CSDiagramPinServiceWrapper
@AccessControlled
@CTAware
@JSONWebService
@ProviderType
@Transactional(isolation=PORTAL,
rollbackFor={com.liferay.portal.kernel.exception.PortalException.class,com.liferay.portal.kernel.exception.SystemException.class})
public interface CSDiagramPinService
extends com.liferay.portal.kernel.service.BaseService
Provides the remote service interface for CSDiagramPin. 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 TypeMethodDescriptionaddCSDiagramPin
(long cpDefinitionId, double positionX, double positionY, String sequence) void
deleteCSDiagramPin
(CSDiagramPin csDiagramPin) void
deleteCSDiagramPins
(long cpDefinitionId) fetchCSDiagramPin
(long csDiagramPinId) getCSDiagramPin
(long csDiagramPinId) getCSDiagramPins
(long cpDefinitionId, int start, int end) int
getCSDiagramPinsCount
(long cpDefinitionId) Returns the OSGi service identifier.updateCSDiagramPin
(long csDiagramPinId, double positionX, double positionY, String sequence)
-
Method Details
-
addCSDiagramPin
CSDiagramPin addCSDiagramPin(long cpDefinitionId, double positionX, double positionY, String sequence) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteCSDiagramPin
void deleteCSDiagramPin(CSDiagramPin csDiagramPin) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
deleteCSDiagramPins
void deleteCSDiagramPins(long cpDefinitionId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
fetchCSDiagramPin
@Transactional(propagation=SUPPORTS, readOnly=true) CSDiagramPin fetchCSDiagramPin(long csDiagramPinId) -
getCSDiagramPin
@Transactional(propagation=SUPPORTS, readOnly=true) CSDiagramPin getCSDiagramPin(long csDiagramPinId) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getCSDiagramPins
@Transactional(propagation=SUPPORTS, readOnly=true) List<CSDiagramPin> getCSDiagramPins(long cpDefinitionId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-
getCSDiagramPinsCount
@Transactional(propagation=SUPPORTS, readOnly=true) int getCSDiagramPinsCount(long cpDefinitionId) 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
-
updateCSDiagramPin
CSDiagramPin updateCSDiagramPin(long csDiagramPinId, double positionX, double positionY, String sequence) throws com.liferay.portal.kernel.exception.PortalException - Throws:
com.liferay.portal.kernel.exception.PortalException
-