@ProviderType @Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface KaleoDefinitionLocalService extends BaseLocalService, PersistedModelLocalService
KaleoDefinitionLocalServiceUtil
Modifier and Type | Method and Description |
---|---|
void |
activateKaleoDefinition(long kaleoDefinitionId,
long startKaleoNodeId,
ServiceContext serviceContext) |
void |
activateKaleoDefinition(long kaleoDefinitionId,
ServiceContext serviceContext) |
void |
activateKaleoDefinition(java.lang.String name,
int version,
ServiceContext serviceContext) |
KaleoDefinition |
addKaleoDefinition(KaleoDefinition kaleoDefinition)
Adds the kaleo definition to the database.
|
KaleoDefinition |
addKaleoDefinition(java.lang.String name,
java.lang.String title,
java.lang.String description,
java.lang.String content,
int version,
ServiceContext serviceContext) |
KaleoDefinition |
createKaleoDefinition(long kaleoDefinitionId)
Creates a new kaleo definition with the primary key.
|
void |
deactivateKaleoDefinition(java.lang.String name,
int version,
ServiceContext serviceContext) |
void |
deleteCompanyKaleoDefinitions(long companyId) |
KaleoDefinition |
deleteKaleoDefinition(KaleoDefinition kaleoDefinition)
Deletes the kaleo definition from the database.
|
KaleoDefinition |
deleteKaleoDefinition(long kaleoDefinitionId)
Deletes the kaleo definition with the primary key from the database.
|
void |
deleteKaleoDefinition(java.lang.String name,
int version,
ServiceContext serviceContext) |
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
DynamicQuery |
dynamicQuery() |
<T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<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.
|
<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.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
KaleoDefinition |
fetchKaleoDefinition(long kaleoDefinitionId) |
KaleoDefinition |
fetchLatestKaleoDefinition(java.lang.String name,
ServiceContext serviceContext) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
KaleoDefinition |
getKaleoDefinition(long kaleoDefinitionId)
Returns the kaleo definition with the primary key.
|
KaleoDefinition |
getKaleoDefinition(java.lang.String name,
int version,
ServiceContext serviceContext) |
java.util.List<KaleoDefinition> |
getKaleoDefinitions(boolean active,
int start,
int end,
OrderByComparator<KaleoDefinition> orderByComparator,
ServiceContext serviceContext) |
java.util.List<KaleoDefinition> |
getKaleoDefinitions(int start,
int end)
Returns a range of all the kaleo definitions.
|
java.util.List<KaleoDefinition> |
getKaleoDefinitions(int start,
int end,
OrderByComparator<KaleoDefinition> orderByComparator,
ServiceContext serviceContext) |
java.util.List<KaleoDefinition> |
getKaleoDefinitions(java.lang.String name,
boolean active,
int start,
int end,
OrderByComparator<KaleoDefinition> orderByComparator,
ServiceContext serviceContext) |
java.util.List<KaleoDefinition> |
getKaleoDefinitions(java.lang.String name,
int start,
int end,
OrderByComparator<KaleoDefinition> orderByComparator,
ServiceContext serviceContext) |
int |
getKaleoDefinitionsCount()
Returns the number of kaleo definitions.
|
int |
getKaleoDefinitionsCount(boolean active,
ServiceContext serviceContext) |
int |
getKaleoDefinitionsCount(ServiceContext serviceContext) |
int |
getKaleoDefinitionsCount(java.lang.String name,
boolean active,
ServiceContext serviceContext) |
int |
getKaleoDefinitionsCount(java.lang.String name,
ServiceContext serviceContext) |
KaleoDefinition |
getLatestKaleoDefinition(java.lang.String name,
ServiceContext serviceContext) |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
KaleoDefinition |
incrementKaleoDefinition(Definition definition,
java.lang.String title,
ServiceContext serviceContext) |
KaleoDefinition |
updateKaleoDefinition(KaleoDefinition kaleoDefinition)
Updates the kaleo definition in the database or adds it if it does not yet exist.
|
KaleoDefinition |
updateTitle(java.lang.String name,
int version,
java.lang.String title,
ServiceContext serviceContext) |
void activateKaleoDefinition(long kaleoDefinitionId, long startKaleoNodeId, ServiceContext serviceContext) throws PortalException
PortalException
void activateKaleoDefinition(long kaleoDefinitionId, ServiceContext serviceContext) throws PortalException
PortalException
void activateKaleoDefinition(java.lang.String name, int version, ServiceContext serviceContext) throws PortalException
PortalException
@Indexable(type=REINDEX) KaleoDefinition addKaleoDefinition(KaleoDefinition kaleoDefinition)
kaleoDefinition
- the kaleo definitionKaleoDefinition addKaleoDefinition(java.lang.String name, java.lang.String title, java.lang.String description, java.lang.String content, int version, ServiceContext serviceContext) throws PortalException
PortalException
@Transactional(enabled=false) KaleoDefinition createKaleoDefinition(long kaleoDefinitionId)
kaleoDefinitionId
- the primary key for the new kaleo definitionvoid deactivateKaleoDefinition(java.lang.String name, int version, ServiceContext serviceContext) throws PortalException
PortalException
void deleteCompanyKaleoDefinitions(long companyId)
@Indexable(type=DELETE) KaleoDefinition deleteKaleoDefinition(KaleoDefinition kaleoDefinition)
kaleoDefinition
- the kaleo definition@Indexable(type=DELETE) KaleoDefinition deleteKaleoDefinition(long kaleoDefinitionId) throws PortalException
kaleoDefinitionId
- the primary key of the kaleo definitionPortalException
- if a kaleo definition with the primary key could not be foundvoid deleteKaleoDefinition(java.lang.String name, int version, ServiceContext serviceContext) throws PortalException
PortalException
PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel
in interface PersistedModelLocalService
PortalException
@Transactional(propagation=SUPPORTS, readOnly=true) DynamicQuery dynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic query@Transactional(propagation=SUPPORTS, readOnly=true) <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.KaleoDefinitionModelImpl
.
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) <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.KaleoDefinitionModelImpl
.
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
)@Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQuery
- the dynamic query@Transactional(propagation=SUPPORTS, readOnly=true) long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the query@Transactional(propagation=SUPPORTS, readOnly=true) KaleoDefinition fetchKaleoDefinition(long kaleoDefinitionId)
@Transactional(propagation=SUPPORTS, readOnly=true) KaleoDefinition fetchLatestKaleoDefinition(java.lang.String name, ServiceContext serviceContext) throws PortalException
PortalException
@Transactional(propagation=SUPPORTS, readOnly=true) ActionableDynamicQuery getActionableDynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
@Transactional(propagation=SUPPORTS, readOnly=true) KaleoDefinition getKaleoDefinition(long kaleoDefinitionId) throws PortalException
kaleoDefinitionId
- the primary key of the kaleo definitionPortalException
- if a kaleo definition with the primary key could not be found@Transactional(propagation=SUPPORTS, readOnly=true) KaleoDefinition getKaleoDefinition(java.lang.String name, int version, ServiceContext serviceContext) throws PortalException
PortalException
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<KaleoDefinition> getKaleoDefinitions(boolean active, int start, int end, OrderByComparator<KaleoDefinition> orderByComparator, ServiceContext serviceContext)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<KaleoDefinition> getKaleoDefinitions(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.KaleoDefinitionModelImpl
.
start
- the lower bound of the range of kaleo definitionsend
- the upper bound of the range of kaleo definitions (not inclusive)@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<KaleoDefinition> getKaleoDefinitions(int start, int end, OrderByComparator<KaleoDefinition> orderByComparator, ServiceContext serviceContext)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<KaleoDefinition> getKaleoDefinitions(java.lang.String name, boolean active, int start, int end, OrderByComparator<KaleoDefinition> orderByComparator, ServiceContext serviceContext)
@Transactional(propagation=SUPPORTS, readOnly=true) java.util.List<KaleoDefinition> getKaleoDefinitions(java.lang.String name, int start, int end, OrderByComparator<KaleoDefinition> orderByComparator, ServiceContext serviceContext)
@Transactional(propagation=SUPPORTS, readOnly=true) int getKaleoDefinitionsCount()
@Transactional(propagation=SUPPORTS, readOnly=true) int getKaleoDefinitionsCount(boolean active, ServiceContext serviceContext)
@Transactional(propagation=SUPPORTS, readOnly=true) int getKaleoDefinitionsCount(ServiceContext serviceContext)
@Transactional(propagation=SUPPORTS, readOnly=true) int getKaleoDefinitionsCount(java.lang.String name, boolean active, ServiceContext serviceContext)
@Transactional(propagation=SUPPORTS, readOnly=true) int getKaleoDefinitionsCount(java.lang.String name, ServiceContext serviceContext)
@Transactional(propagation=SUPPORTS, readOnly=true) KaleoDefinition getLatestKaleoDefinition(java.lang.String name, ServiceContext serviceContext) throws PortalException
PortalException
java.lang.String getOSGiServiceIdentifier()
@Transactional(propagation=SUPPORTS, readOnly=true) PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
getPersistedModel
in interface PersistedModelLocalService
PortalException
KaleoDefinition incrementKaleoDefinition(Definition definition, java.lang.String title, ServiceContext serviceContext) throws PortalException
PortalException
@Indexable(type=REINDEX) KaleoDefinition updateKaleoDefinition(KaleoDefinition kaleoDefinition)
kaleoDefinition
- the kaleo definitionKaleoDefinition updateTitle(java.lang.String name, int version, java.lang.String title, ServiceContext serviceContext) throws PortalException
PortalException