Package | Description |
---|---|
com.communote.server.api.core.task | |
com.communote.server.core.tasks | |
com.communote.server.model.task | |
com.communote.server.persistence.tasks |
Modifier and Type | Method and Description |
---|---|
Collection<TaskExecution> |
TaskManagement.getTaskExecutions(String instanceName)
Return all task executions running on the Communote with the given name.
|
Modifier and Type | Method and Description |
---|---|
Collection<TaskExecution> |
TaskManagementImpl.getTaskExecutions(String instanceName) |
Modifier and Type | Class and Description |
---|---|
class |
TaskExecutionImpl |
Modifier and Type | Method and Description |
---|---|
static TaskExecution |
TaskExecution.Factory.newInstance()
Constructs a new instance of
TaskExecution . |
static TaskExecution |
TaskExecution.Factory.newInstance(String instanceName,
Task task)
Constructs a new instance of
TaskExecution ,
taking all possible properties (except the identifier(s))as arguments. |
Modifier and Type | Method and Description |
---|---|
TaskExecution |
TaskExecutionDaoBase.create(TaskExecution taskExecution) |
TaskExecution |
TaskExecutionDao.create(TaskExecution taskExecution)
Creates an instance of com.communote.server.persistence.tasks.TaskExecution and adds it to
the persistent store.
|
TaskExecution |
TaskExecutionDaoBase.findTaskExecution(String uniqueTaskName) |
TaskExecution |
TaskExecutionDao.findTaskExecution(String uniqueTaskName) |
protected TaskExecution |
TaskExecutionDaoImpl.handleFindTaskExecution(String uniqueTaskName)
Performs the core logic for
TaskExecutionDaoBase.findTaskExecution(String) |
protected abstract TaskExecution |
TaskExecutionDaoBase.handleFindTaskExecution(String uniqueTaskName)
Performs the core logic for
TaskExecutionDaoBase.findTaskExecution(String) |
TaskExecution |
TaskExecutionDaoBase.load(Long id) |
TaskExecution |
TaskExecutionDao.load(Long id)
Loads an instance of com.communote.server.persistence.tasks.TaskExecution from the persistent
store.
|
Modifier and Type | Method and Description |
---|---|
Collection<TaskExecution> |
TaskExecutionDaoBase.create(Collection<TaskExecution> entities) |
Collection<TaskExecution> |
TaskExecutionDao.create(Collection<TaskExecution> entities)
Creates a new instance of com.communote.server.persistence.tasks.TaskExecution and adds from
the passed in
entities collection |
Collection<TaskExecution> |
TaskExecutionDaoBase.create(int transform,
Collection<TaskExecution> entities) |
Collection<TaskExecution> |
TaskExecutionDaoBase.findTaskExecutions(String instanceName) |
Collection<TaskExecution> |
TaskExecutionDao.findTaskExecutions(String instanceName) |
protected Collection<TaskExecution> |
TaskExecutionDaoImpl.handleFindTaskExecutions(String instanceName)
Performs the core logic for
TaskExecutionDaoBase.findTaskExecutions(String) |
protected abstract Collection<TaskExecution> |
TaskExecutionDaoBase.handleFindTaskExecutions(String instanceName)
Performs the core logic for
TaskExecutionDaoBase.findTaskExecutions(String) |
Collection<TaskExecution> |
TaskExecutionDaoBase.loadAll() |
Collection<TaskExecution> |
TaskExecutionDao.loadAll()
Loads all entities of type
TaskExecution . |
Modifier and Type | Method and Description |
---|---|
Object |
TaskExecutionDaoBase.create(int transform,
TaskExecution taskExecution) |
Object |
TaskExecutionDao.create(int transform,
TaskExecution taskExecution)
Does the same thing as
TaskExecutionDao.create(com.communote.server.model.task.TaskExecution) with an
additional flag called transform . |
TaskExecution |
TaskExecutionDaoBase.create(TaskExecution taskExecution) |
TaskExecution |
TaskExecutionDao.create(TaskExecution taskExecution)
Creates an instance of com.communote.server.persistence.tasks.TaskExecution and adds it to
the persistent store.
|
void |
TaskExecutionDaoBase.evict(TaskExecution entity)
Evicts (removes) the entity from the hibernate cache
|
void |
TaskExecutionDao.evict(TaskExecution entity)
Evicts (removes) the entity from the hibernate cache
|
void |
TaskExecutionDaoBase.remove(TaskExecution taskExecution) |
void |
TaskExecutionDao.remove(TaskExecution taskExecution)
Removes the instance of com.communote.server.persistence.tasks.TaskExecution from the
persistent store.
|
protected Object |
TaskExecutionDaoBase.transformEntity(int transform,
TaskExecution entity)
Allows transformation of entities into value objects (or something else for that matter),
when the
transform flag is set to one of the constants defined in
com.communote.server.persistence.tasks.TaskExecutionDao , please note that the
TaskExecutionDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself will be
returned. |
void |
TaskExecutionDaoBase.update(TaskExecution taskExecution) |
void |
TaskExecutionDao.update(TaskExecution taskExecution)
Updates the
taskExecution instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<TaskExecution> |
TaskExecutionDaoBase.create(Collection<TaskExecution> entities) |
Collection<TaskExecution> |
TaskExecutionDao.create(Collection<TaskExecution> entities)
Creates a new instance of com.communote.server.persistence.tasks.TaskExecution and adds from
the passed in
entities collection |
Collection<TaskExecution> |
TaskExecutionDaoBase.create(int transform,
Collection<TaskExecution> entities) |
Collection<?> |
TaskExecutionDao.create(int transform,
Collection<TaskExecution> entities)
Does the same thing as
TaskExecutionDao.create(com.communote.server.model.task.TaskExecution) with an
additional flag called transform . |
void |
TaskExecutionDaoBase.remove(Collection<TaskExecution> entities) |
void |
TaskExecutionDao.remove(Collection<TaskExecution> entities)
Removes all entities in the given
entities |
void |
TaskExecutionDaoBase.update(Collection<TaskExecution> entities) |
void |
TaskExecutionDao.update(Collection<TaskExecution> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.