Uses of Interface
org.camunda.bpm.engine.management.SchemaLogQuery
-
Packages that use SchemaLogQuery Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService
: Exposes information about ongoing and past process instances.
FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.management Classes related to theManagementService
.org.camunda.bpm.engine.rest.dto org.camunda.bpm.engine.rest.impl -
-
Uses of SchemaLogQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return SchemaLogQuery Modifier and Type Method Description SchemaLogQuery
ManagementService. createSchemaLogQuery()
Query for entries of the database schema log. -
Uses of SchemaLogQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement SchemaLogQuery Modifier and Type Class Description class
SchemaLogQueryImpl
Methods in org.camunda.bpm.engine.impl that return SchemaLogQuery Modifier and Type Method Description SchemaLogQuery
ManagementServiceImpl. createSchemaLogQuery()
SchemaLogQuery
SchemaLogQueryImpl. orderByTimestamp()
SchemaLogQuery
SchemaLogQueryImpl. version(String version)
-
Uses of SchemaLogQuery in org.camunda.bpm.engine.impl.persistence.entity
Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type SchemaLogQuery Modifier and Type Method Description Long
SchemaLogManager. findSchemaLogEntryCountByQueryCriteria(SchemaLogQuery schemaLogQuery)
-
Uses of SchemaLogQuery in org.camunda.bpm.engine.management
Methods in org.camunda.bpm.engine.management that return SchemaLogQuery Modifier and Type Method Description SchemaLogQuery
SchemaLogQuery. orderByTimestamp()
Order by task timestamp (needs to be followed byQuery.asc()
orQuery.desc()
).SchemaLogQuery
SchemaLogQuery. version(String version)
Only showentries
with a given version. -
Uses of SchemaLogQuery in org.camunda.bpm.engine.rest.dto
Methods in org.camunda.bpm.engine.rest.dto that return SchemaLogQuery Modifier and Type Method Description protected SchemaLogQuery
SchemaLogQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto with parameters of type SchemaLogQuery Modifier and Type Method Description protected void
SchemaLogQueryDto. applyFilters(SchemaLogQuery query)
protected void
SchemaLogQueryDto. applySortBy(SchemaLogQuery query, String sortBy, Map<String,Object> parameters, ProcessEngine engine)
-
Uses of SchemaLogQuery in org.camunda.bpm.engine.rest.impl
Methods in org.camunda.bpm.engine.rest.impl with parameters of type SchemaLogQuery Modifier and Type Method Description protected List<SchemaLogEntry>
SchemaLogRestServiceImpl. executePaginatedQuery(SchemaLogQuery query, Integer firstResult, Integer maxResults)
-