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 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) |
KaleoDefinitionLocalService |
getWrappedService() |
KaleoDefinition |
incrementKaleoDefinition(Definition definition,
java.lang.String title,
ServiceContext serviceContext) |
void |
setWrappedService(KaleoDefinitionLocalService kaleoDefinitionLocalService) |
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) |
public KaleoDefinitionLocalServiceWrapper(KaleoDefinitionLocalService kaleoDefinitionLocalService)
public void activateKaleoDefinition(long kaleoDefinitionId, long startKaleoNodeId, ServiceContext serviceContext) throws PortalException
activateKaleoDefinition
in interface KaleoDefinitionLocalService
PortalException
public void activateKaleoDefinition(long kaleoDefinitionId, ServiceContext serviceContext) throws PortalException
activateKaleoDefinition
in interface KaleoDefinitionLocalService
PortalException
public void activateKaleoDefinition(java.lang.String name, int version, ServiceContext serviceContext) throws PortalException
activateKaleoDefinition
in interface KaleoDefinitionLocalService
PortalException
public KaleoDefinition addKaleoDefinition(KaleoDefinition kaleoDefinition)
addKaleoDefinition
in interface KaleoDefinitionLocalService
kaleoDefinition
- the kaleo definitionpublic 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
in interface KaleoDefinitionLocalService
PortalException
public KaleoDefinition createKaleoDefinition(long kaleoDefinitionId)
createKaleoDefinition
in interface KaleoDefinitionLocalService
kaleoDefinitionId
- the primary key for the new kaleo definitionpublic void deactivateKaleoDefinition(java.lang.String name, int version, ServiceContext serviceContext) throws PortalException
deactivateKaleoDefinition
in interface KaleoDefinitionLocalService
PortalException
public void deleteCompanyKaleoDefinitions(long companyId)
deleteCompanyKaleoDefinitions
in interface KaleoDefinitionLocalService
public KaleoDefinition deleteKaleoDefinition(KaleoDefinition kaleoDefinition)
deleteKaleoDefinition
in interface KaleoDefinitionLocalService
kaleoDefinition
- the kaleo definitionpublic KaleoDefinition deleteKaleoDefinition(long kaleoDefinitionId) throws PortalException
deleteKaleoDefinition
in interface KaleoDefinitionLocalService
kaleoDefinitionId
- 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, int version, ServiceContext serviceContext) throws PortalException
deleteKaleoDefinition
in interface KaleoDefinitionLocalService
PortalException
public PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel
in interface PersistedModelLocalService
deletePersistedModel
in interface KaleoDefinitionLocalService
PortalException
public DynamicQuery dynamicQuery()
dynamicQuery
in interface KaleoDefinitionLocalService
public <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
in interface KaleoDefinitionLocalService
dynamicQuery
- 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 KaleoDefinitionLocalService
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 <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 KaleoDefinitionLocalService
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 long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQueryCount
in interface KaleoDefinitionLocalService
dynamicQuery
- the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount
in interface KaleoDefinitionLocalService
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the querypublic KaleoDefinition fetchKaleoDefinition(long kaleoDefinitionId)
fetchKaleoDefinition
in interface KaleoDefinitionLocalService
public KaleoDefinition fetchLatestKaleoDefinition(java.lang.String name, ServiceContext serviceContext) throws PortalException
fetchLatestKaleoDefinition
in interface KaleoDefinitionLocalService
PortalException
public ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery
in interface KaleoDefinitionLocalService
public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery
in interface KaleoDefinitionLocalService
public KaleoDefinition getKaleoDefinition(long kaleoDefinitionId) throws PortalException
getKaleoDefinition
in interface KaleoDefinitionLocalService
kaleoDefinitionId
- 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, int version, ServiceContext serviceContext) throws PortalException
getKaleoDefinition
in interface KaleoDefinitionLocalService
PortalException
public java.util.List<KaleoDefinition> getKaleoDefinitions(boolean active, int start, int end, OrderByComparator<KaleoDefinition> orderByComparator, ServiceContext serviceContext)
getKaleoDefinitions
in interface KaleoDefinitionLocalService
public 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 KaleoDefinitionLocalService
start
- 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 KaleoDefinitionLocalService
public java.util.List<KaleoDefinition> getKaleoDefinitions(java.lang.String name, boolean active, int start, int end, OrderByComparator<KaleoDefinition> orderByComparator, ServiceContext serviceContext)
getKaleoDefinitions
in interface KaleoDefinitionLocalService
public java.util.List<KaleoDefinition> getKaleoDefinitions(java.lang.String name, int start, int end, OrderByComparator<KaleoDefinition> orderByComparator, ServiceContext serviceContext)
getKaleoDefinitions
in interface KaleoDefinitionLocalService
public int getKaleoDefinitionsCount()
getKaleoDefinitionsCount
in interface KaleoDefinitionLocalService
public int getKaleoDefinitionsCount(boolean active, ServiceContext serviceContext)
getKaleoDefinitionsCount
in interface KaleoDefinitionLocalService
public int getKaleoDefinitionsCount(ServiceContext serviceContext)
getKaleoDefinitionsCount
in interface KaleoDefinitionLocalService
public int getKaleoDefinitionsCount(java.lang.String name, boolean active, ServiceContext serviceContext)
getKaleoDefinitionsCount
in interface KaleoDefinitionLocalService
public int getKaleoDefinitionsCount(java.lang.String name, ServiceContext serviceContext)
getKaleoDefinitionsCount
in interface KaleoDefinitionLocalService
public KaleoDefinition getLatestKaleoDefinition(java.lang.String name, ServiceContext serviceContext) throws PortalException
getLatestKaleoDefinition
in interface KaleoDefinitionLocalService
PortalException
public java.lang.String getOSGiServiceIdentifier()
getOSGiServiceIdentifier
in interface KaleoDefinitionLocalService
public PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
getPersistedModel
in interface PersistedModelLocalService
getPersistedModel
in interface KaleoDefinitionLocalService
PortalException
public KaleoDefinition incrementKaleoDefinition(Definition definition, java.lang.String title, ServiceContext serviceContext) throws PortalException
incrementKaleoDefinition
in interface KaleoDefinitionLocalService
PortalException
public KaleoDefinition updateKaleoDefinition(KaleoDefinition kaleoDefinition)
updateKaleoDefinition
in interface KaleoDefinitionLocalService
kaleoDefinition
- the kaleo definitionpublic KaleoDefinition updateTitle(java.lang.String name, int version, java.lang.String title, ServiceContext serviceContext) throws PortalException
updateTitle
in interface KaleoDefinitionLocalService
PortalException
public KaleoDefinitionLocalService getWrappedService()
getWrappedService
in interface ServiceWrapper<KaleoDefinitionLocalService>
public void setWrappedService(KaleoDefinitionLocalService kaleoDefinitionLocalService)
setWrappedService
in interface ServiceWrapper<KaleoDefinitionLocalService>