public class KaleoTransitionLocalServiceUtil
extends java.lang.Object
com.liferay.portal.workflow.kaleo.service.impl.KaleoTransitionLocalServiceImpl and
is an access point for service operations in application layer code running
on the local server. Methods of this service will not have security checks
based on the propagated JAAS credentials because this service can only be
accessed from within the same VM.KaleoTransitionLocalService| Constructor and Description |
|---|
KaleoTransitionLocalServiceUtil() |
| Modifier and Type | Method and Description |
|---|---|
static KaleoTransition |
addKaleoTransition(KaleoTransition kaleoTransition)
Adds the kaleo transition to the database.
|
static KaleoTransition |
addKaleoTransition(long kaleoDefinitionId,
long kaleoDefinitionVersionId,
long kaleoNodeId,
Transition transition,
KaleoNode sourceKaleoNode,
KaleoNode targetKaleoNode,
ServiceContext serviceContext) |
static KaleoTransition |
createKaleoTransition(long kaleoTransitionId)
Creates a new kaleo transition with the primary key.
|
static PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
static void |
deleteCompanyKaleoTransitions(long companyId) |
static void |
deleteKaleoDefinitionVersionKaleoTransitions(long kaleoDefinitionVersionId) |
static KaleoTransition |
deleteKaleoTransition(KaleoTransition kaleoTransition)
Deletes the kaleo transition from the database.
|
static KaleoTransition |
deleteKaleoTransition(long kaleoTransitionId)
Deletes the kaleo transition with the primary key from the database.
|
static PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
static <T> T |
dslQuery(DSLQuery dslQuery) |
static DynamicQuery |
dynamicQuery() |
static <T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
static <T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
static <T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
static long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
static long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
static KaleoTransition |
fetchKaleoTransition(long kaleoTransitionId) |
static ActionableDynamicQuery |
getActionableDynamicQuery() |
static KaleoTransition |
getDefaultKaleoTransition(long kaleoNodeId) |
static IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
static java.util.List<KaleoTransition> |
getKaleoDefinitionVersionKaleoTransitions(long kaleoDefinitionVersionId) |
static KaleoTransition |
getKaleoTransition(long kaleoTransitionId)
Returns the kaleo transition with the primary key.
|
static KaleoTransition |
getKaleoTransition(long kaleoNodeId,
java.lang.String name) |
static java.util.List<KaleoTransition> |
getKaleoTransitions(int start,
int end)
Returns a range of all the kaleo transitions.
|
static java.util.List<KaleoTransition> |
getKaleoTransitions(long kaleoNodeId) |
static int |
getKaleoTransitionsCount()
Returns the number of kaleo transitions.
|
static int |
getKaleoTransitionsCount(long kaleoNodeId) |
static java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
static PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
static KaleoTransitionLocalService |
getService() |
static KaleoTransition |
updateKaleoTransition(KaleoTransition kaleoTransition)
Updates the kaleo transition in the database or adds it if it does not yet exist.
|
public static KaleoTransition addKaleoTransition(KaleoTransition kaleoTransition)
Important: Inspect KaleoTransitionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
kaleoTransition - the kaleo transitionpublic static KaleoTransition addKaleoTransition(long kaleoDefinitionId, long kaleoDefinitionVersionId, long kaleoNodeId, Transition transition, KaleoNode sourceKaleoNode, KaleoNode targetKaleoNode, ServiceContext serviceContext) throws PortalException
PortalExceptionpublic static KaleoTransition createKaleoTransition(long kaleoTransitionId)
kaleoTransitionId - the primary key for the new kaleo transitionpublic static PersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
PortalExceptionpublic static void deleteCompanyKaleoTransitions(long companyId)
public static void deleteKaleoDefinitionVersionKaleoTransitions(long kaleoDefinitionVersionId)
public static KaleoTransition deleteKaleoTransition(KaleoTransition kaleoTransition)
Important: Inspect KaleoTransitionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
kaleoTransition - the kaleo transitionpublic static KaleoTransition deleteKaleoTransition(long kaleoTransitionId) throws PortalException
Important: Inspect KaleoTransitionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
kaleoTransitionId - the primary key of the kaleo transitionPortalException - if a kaleo transition with the primary key could not be foundpublic static PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
PortalExceptionpublic static <T> T dslQuery(DSLQuery dslQuery)
public static DynamicQuery dynamicQuery()
public static <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery - the dynamic querypublic static <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portal.workflow.kaleo.model.impl.KaleoTransitionModelImpl.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)public static <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portal.workflow.kaleo.model.impl.KaleoTransitionModelImpl.
dynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public static long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQuery - the dynamic querypublic static long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic static KaleoTransition fetchKaleoTransition(long kaleoTransitionId)
public static ActionableDynamicQuery getActionableDynamicQuery()
public static KaleoTransition getDefaultKaleoTransition(long kaleoNodeId) throws PortalException
PortalExceptionpublic static IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
public static java.util.List<KaleoTransition> getKaleoDefinitionVersionKaleoTransitions(long kaleoDefinitionVersionId)
public static KaleoTransition getKaleoTransition(long kaleoTransitionId) throws PortalException
kaleoTransitionId - the primary key of the kaleo transitionPortalException - if a kaleo transition with the primary key could not be foundpublic static KaleoTransition getKaleoTransition(long kaleoNodeId, java.lang.String name) throws PortalException
PortalExceptionpublic static java.util.List<KaleoTransition> getKaleoTransitions(int start, int end)
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portal.workflow.kaleo.model.impl.KaleoTransitionModelImpl.
start - the lower bound of the range of kaleo transitionsend - the upper bound of the range of kaleo transitions (not inclusive)public static java.util.List<KaleoTransition> getKaleoTransitions(long kaleoNodeId)
public static int getKaleoTransitionsCount()
public static int getKaleoTransitionsCount(long kaleoNodeId)
public static java.lang.String getOSGiServiceIdentifier()
public static PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
PortalExceptionpublic static KaleoTransition updateKaleoTransition(KaleoTransition kaleoTransition)
Important: Inspect KaleoTransitionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
kaleoTransition - the kaleo transitionpublic static KaleoTransitionLocalService getService()