public class KaleoDefinitionLocalServiceWrapper extends java.lang.Object implements KaleoDefinitionLocalService, ServiceWrapper<KaleoDefinitionLocalService>
KaleoDefinitionLocalService.KaleoDefinitionLocalService| Constructor and Description |
|---|
KaleoDefinitionLocalServiceWrapper(KaleoDefinitionLocalService kaleoDefinitionLocalService) |
| Modifier and Type | Method and Description |
|---|---|
void |
activateKaleoDefinition(long kaleoDefinitionId,
long kaleoDefinitionVersionId,
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)
Deprecated.
As of Athanasius (7.3.x), replaced by
addKaleoDefinition(String, String, String, String, String,
int, ServiceContext) |
KaleoDefinition |
addKaleoDefinition(java.lang.String name,
java.lang.String title,
java.lang.String description,
java.lang.String content,
java.lang.String scope,
int version,
ServiceContext serviceContext) |
KaleoDefinition |
createKaleoDefinition(long kaleoDefinitionId)
Creates a new kaleo definition with the primary key.
|
PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
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,
ServiceContext serviceContext) |
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
<T> T |
dslQuery(DSLQuery dslQuery) |
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 |
fetchKaleoDefinition(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,
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) |
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) |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
KaleoDefinitionLocalService |
getWrappedService() |
void |
setWrappedService(KaleoDefinitionLocalService kaleoDefinitionLocalService) |
KaleoDefinition |
updatedKaleoDefinition(long kaleoDefinitionId,
java.lang.String title,
java.lang.String description,
java.lang.String content,
ServiceContext serviceContext) |
KaleoDefinition |
updateKaleoDefinition(KaleoDefinition kaleoDefinition)
Updates the kaleo definition in the database or adds it if it does not yet exist.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetBasePersistencepublic KaleoDefinitionLocalServiceWrapper(KaleoDefinitionLocalService kaleoDefinitionLocalService)
public void activateKaleoDefinition(long kaleoDefinitionId,
long kaleoDefinitionVersionId,
long startKaleoNodeId,
ServiceContext serviceContext)
throws PortalException
activateKaleoDefinition in interface KaleoDefinitionLocalServicePortalExceptionpublic void activateKaleoDefinition(long kaleoDefinitionId,
ServiceContext serviceContext)
throws PortalException
activateKaleoDefinition in interface KaleoDefinitionLocalServicePortalExceptionpublic void activateKaleoDefinition(java.lang.String name,
int version,
ServiceContext serviceContext)
throws PortalException
activateKaleoDefinition in interface KaleoDefinitionLocalServicePortalExceptionpublic KaleoDefinition addKaleoDefinition(KaleoDefinition kaleoDefinition)
addKaleoDefinition in interface KaleoDefinitionLocalServicekaleoDefinition - the kaleo definition@Deprecated public KaleoDefinition addKaleoDefinition(java.lang.String name, java.lang.String title, java.lang.String description, java.lang.String content, int version, ServiceContext serviceContext) throws PortalException
addKaleoDefinition(String, String, String, String, String,
int, ServiceContext)addKaleoDefinition in interface KaleoDefinitionLocalServicePortalExceptionpublic KaleoDefinition addKaleoDefinition(java.lang.String name, java.lang.String title, java.lang.String description, java.lang.String content, java.lang.String scope, int version, ServiceContext serviceContext) throws PortalException
addKaleoDefinition in interface KaleoDefinitionLocalServicePortalExceptionpublic KaleoDefinition createKaleoDefinition(long kaleoDefinitionId)
createKaleoDefinition in interface KaleoDefinitionLocalServicekaleoDefinitionId - the primary key for the new kaleo definitionpublic PersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
createPersistedModel in interface PersistedModelLocalServicecreatePersistedModel in interface KaleoDefinitionLocalServicePortalExceptionpublic void deactivateKaleoDefinition(java.lang.String name,
int version,
ServiceContext serviceContext)
throws PortalException
deactivateKaleoDefinition in interface KaleoDefinitionLocalServicePortalExceptionpublic void deleteCompanyKaleoDefinitions(long companyId)
deleteCompanyKaleoDefinitions in interface KaleoDefinitionLocalServicepublic KaleoDefinition deleteKaleoDefinition(KaleoDefinition kaleoDefinition)
deleteKaleoDefinition in interface KaleoDefinitionLocalServicekaleoDefinition - the kaleo definitionpublic KaleoDefinition deleteKaleoDefinition(long kaleoDefinitionId) throws PortalException
deleteKaleoDefinition in interface KaleoDefinitionLocalServicekaleoDefinitionId - the primary key of the kaleo definitionPortalException - if a kaleo definition with the primary key could not be foundpublic void deleteKaleoDefinition(java.lang.String name,
ServiceContext serviceContext)
throws PortalException
deleteKaleoDefinition in interface KaleoDefinitionLocalServicePortalExceptionpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface PersistedModelLocalServicedeletePersistedModel in interface KaleoDefinitionLocalServicePortalExceptionpublic <T> T dslQuery(DSLQuery dslQuery)
dslQuery in interface KaleoDefinitionLocalServicepublic DynamicQuery dynamicQuery()
dynamicQuery in interface KaleoDefinitionLocalServicepublic <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery in interface KaleoDefinitionLocalServicedynamicQuery - the dynamic querypublic <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 in interface KaleoDefinitionLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)public <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 in interface KaleoDefinitionLocalServicedynamicQuery - 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 long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQueryCount in interface KaleoDefinitionLocalServicedynamicQuery - the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount in interface KaleoDefinitionLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic KaleoDefinition fetchKaleoDefinition(long kaleoDefinitionId)
fetchKaleoDefinition in interface KaleoDefinitionLocalServicepublic KaleoDefinition fetchKaleoDefinition(java.lang.String name, ServiceContext serviceContext)
fetchKaleoDefinition in interface KaleoDefinitionLocalServicepublic ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery in interface KaleoDefinitionLocalServicepublic IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery in interface KaleoDefinitionLocalServicepublic KaleoDefinition getKaleoDefinition(long kaleoDefinitionId) throws PortalException
getKaleoDefinition in interface KaleoDefinitionLocalServicekaleoDefinitionId - the primary key of the kaleo definitionPortalException - if a kaleo definition with the primary key could not be foundpublic KaleoDefinition getKaleoDefinition(java.lang.String name, ServiceContext serviceContext) throws PortalException
getKaleoDefinition in interface KaleoDefinitionLocalServicePortalExceptionpublic java.util.List<KaleoDefinition> getKaleoDefinitions(boolean active, int start, int end, OrderByComparator<KaleoDefinition> orderByComparator, ServiceContext serviceContext)
getKaleoDefinitions in interface KaleoDefinitionLocalServicepublic 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.
getKaleoDefinitions in interface KaleoDefinitionLocalServicestart - the lower bound of the range of kaleo definitionsend - the upper bound of the range of kaleo definitions (not inclusive)public java.util.List<KaleoDefinition> getKaleoDefinitions(int start, int end, OrderByComparator<KaleoDefinition> orderByComparator, ServiceContext serviceContext)
getKaleoDefinitions in interface KaleoDefinitionLocalServicepublic int getKaleoDefinitionsCount()
getKaleoDefinitionsCount in interface KaleoDefinitionLocalServicepublic int getKaleoDefinitionsCount(boolean active,
ServiceContext serviceContext)
getKaleoDefinitionsCount in interface KaleoDefinitionLocalServicepublic int getKaleoDefinitionsCount(ServiceContext serviceContext)
getKaleoDefinitionsCount in interface KaleoDefinitionLocalServicepublic int getKaleoDefinitionsCount(java.lang.String name,
boolean active,
ServiceContext serviceContext)
getKaleoDefinitionsCount in interface KaleoDefinitionLocalServicepublic int getKaleoDefinitionsCount(java.lang.String name,
ServiceContext serviceContext)
getKaleoDefinitionsCount in interface KaleoDefinitionLocalServicepublic java.lang.String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface KaleoDefinitionLocalServicepublic PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface PersistedModelLocalServicegetPersistedModel in interface KaleoDefinitionLocalServicePortalExceptionpublic KaleoDefinition updatedKaleoDefinition(long kaleoDefinitionId, java.lang.String title, java.lang.String description, java.lang.String content, ServiceContext serviceContext) throws PortalException
updatedKaleoDefinition in interface KaleoDefinitionLocalServicePortalExceptionpublic KaleoDefinition updateKaleoDefinition(KaleoDefinition kaleoDefinition)
updateKaleoDefinition in interface KaleoDefinitionLocalServicekaleoDefinition - the kaleo definitionpublic KaleoDefinitionLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<KaleoDefinitionLocalService>public void setWrappedService(KaleoDefinitionLocalService kaleoDefinitionLocalService)
setWrappedService in interface ServiceWrapper<KaleoDefinitionLocalService>