Package | Description |
---|---|
com.communote.server.model.task | |
com.communote.server.persistence.tasks |
Modifier and Type | Class and Description |
---|---|
class |
TaskPropertyImpl |
Modifier and Type | Method and Description |
---|---|
static TaskProperty |
TaskProperty.Factory.newInstance()
Constructs a new instance of
TaskProperty . |
static TaskProperty |
TaskProperty.Factory.newInstance(String propertyKey,
String propertyValue)
Constructs a new instance of
TaskProperty , taking
all possible properties (except the identifier(s))as arguments. |
Modifier and Type | Method and Description |
---|---|
Set<TaskProperty> |
Task.getProperties() |
Modifier and Type | Method and Description |
---|---|
static Task |
Task.Factory.newInstance(String uniqueName,
Boolean active,
TaskStatus taskStatus,
Date nextExecution,
Date lastExecution,
Long taskInterval,
String handlerClassName,
Set<TaskProperty> properties)
Constructs a new instance of
Task , taking all
possible properties (except the identifier(s))as arguments. |
void |
Task.setProperties(Set<TaskProperty> properties) |
Modifier and Type | Method and Description |
---|---|
TaskProperty |
TaskPropertyDaoBase.create(TaskProperty taskProperty) |
TaskProperty |
TaskPropertyDao.create(TaskProperty taskProperty)
Creates an instance of com.communote.server.persistence.tasks.TaskProperty and adds it to the
persistent store.
|
TaskProperty |
TaskPropertyDaoBase.load(Long id) |
TaskProperty |
TaskPropertyDao.load(Long id)
Loads an instance of com.communote.server.persistence.tasks.TaskProperty from the persistent
store.
|
Modifier and Type | Method and Description |
---|---|
Collection<TaskProperty> |
TaskPropertyDaoBase.create(Collection<TaskProperty> entities) |
Collection<TaskProperty> |
TaskPropertyDao.create(Collection<TaskProperty> entities)
Creates a new instance of com.communote.server.persistence.tasks.TaskProperty and adds from
the passed in
entities collection |
Collection<TaskProperty> |
TaskPropertyDaoBase.create(int transform,
Collection<TaskProperty> entities) |
Collection<TaskProperty> |
TaskPropertyDaoBase.loadAll() |
Collection<TaskProperty> |
TaskPropertyDao.loadAll()
Loads all entities of type
TaskProperty . |
Modifier and Type | Method and Description |
---|---|
Object |
TaskPropertyDaoBase.create(int transform,
TaskProperty taskProperty) |
Object |
TaskPropertyDao.create(int transform,
TaskProperty taskProperty)
Does the same thing as
TaskPropertyDao.create(com.communote.server.model.task.TaskProperty) with an
additional flag called transform . |
TaskProperty |
TaskPropertyDaoBase.create(TaskProperty taskProperty) |
TaskProperty |
TaskPropertyDao.create(TaskProperty taskProperty)
Creates an instance of com.communote.server.persistence.tasks.TaskProperty and adds it to the
persistent store.
|
void |
TaskPropertyDaoBase.evict(TaskProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
TaskPropertyDao.evict(TaskProperty entity)
Evicts (removes) the entity from the hibernate cache
|
void |
TaskPropertyDaoBase.remove(TaskProperty taskProperty) |
void |
TaskPropertyDao.remove(TaskProperty taskProperty)
Removes the instance of com.communote.server.persistence.tasks.TaskProperty from the
persistent store.
|
protected Object |
TaskPropertyDaoBase.transformEntity(int transform,
TaskProperty 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.TaskPropertyDao , please note that the
TaskPropertyDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself will be
returned. |
void |
TaskPropertyDaoBase.update(TaskProperty taskProperty) |
void |
TaskPropertyDao.update(TaskProperty taskProperty)
Updates the
taskProperty instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<TaskProperty> |
TaskPropertyDaoBase.create(Collection<TaskProperty> entities) |
Collection<TaskProperty> |
TaskPropertyDao.create(Collection<TaskProperty> entities)
Creates a new instance of com.communote.server.persistence.tasks.TaskProperty and adds from
the passed in
entities collection |
Collection<TaskProperty> |
TaskPropertyDaoBase.create(int transform,
Collection<TaskProperty> entities) |
Collection<?> |
TaskPropertyDao.create(int transform,
Collection<TaskProperty> entities)
Does the same thing as
TaskPropertyDao.create(com.communote.server.model.task.TaskProperty) with an
additional flag called transform . |
void |
TaskPropertyDaoBase.remove(Collection<TaskProperty> entities) |
void |
TaskPropertyDao.remove(Collection<TaskProperty> entities)
Removes all entities in the given
entities |
void |
TaskPropertyDaoBase.update(Collection<TaskProperty> entities) |
void |
TaskPropertyDao.update(Collection<TaskProperty> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.