Package | Description |
---|---|
com.whitestein.lsps.human.dao |
Data access object for storing and retrieving todo-related entities.
|
com.whitestein.lsps.human.dao.jpa | |
com.whitestein.lsps.human.dto |
Data transfer objects for the functionality related to human-oriented processes.
|
com.whitestein.lsps.human.entity |
Persistent entities for human-oriented tasks.
|
com.whitestein.lsps.human.exception | |
com.whitestein.lsps.human.task |
Implementations for the tasks in the LSPS standard library for human-oriented processes.
|
com.whitestein.lsps.test |
Modifier and Type | Method and Description |
---|---|
Map<TodoStatus,Long> |
TodoDao.getStatusCounts()
Returns a map of to-do counts grouped by the status.
|
Modifier and Type | Method and Description |
---|---|
Map<TodoStatus,Long> |
JpaTodoDao.getStatusCounts() |
Modifier and Type | Method and Description |
---|---|
TodoStatus |
Todo.getStatus()
Returns the status of the todo.
|
TodoStatus |
TodoEscalation.getTodoStatus()
Returns the todo status (at the time of escalation)
|
static TodoStatus |
TodoStatus.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TodoStatus[] |
TodoStatus.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Set<TodoStatus> |
TodoCriteria.getStatuses()
Returns the todo statuses.
|
Modifier and Type | Method and Description |
---|---|
void |
TodoCriteria.setStatuses(Set<TodoStatus> statuses)
Sets the todo statuses.
|
Constructor and Description |
---|
Todo(long id,
long modelInstanceId,
String title,
String type,
TodoStatus status,
String interruptionReason,
Date issuedDate,
Date submittedDate,
Person allocatedTo,
Collection<? extends Performer> performers,
int delegationLevel,
String taskNamespace,
long taskId,
String taskName,
byte[] contentBytes,
Integer priority,
String notes,
TodoAuthorization authorization)
Creates new instance of
Todo . |
TodoEscalation(long id,
long todoId,
String reason,
TodoStatus todoStatus,
String allocatedTo,
Date escalationDate)
Creates new todo escalation.
|
Modifier and Type | Method and Description |
---|---|
TodoStatus |
Todo.getStatus()
Returns status of the todo.
|
TodoStatus |
TodoEscalation.getTodoStatus() |
Modifier and Type | Method and Description |
---|---|
TodoStatus |
InvalidTodoStatusException.getStatus()
Returns the todo status.
|
Constructor and Description |
---|
InvalidTodoStatusException(long todoId,
TodoStatus status)
Creates new instance.
|
Modifier and Type | Method and Description |
---|---|
protected String |
BaseTodoTask.removeTodo(TaskContext context,
TodoStatus status,
String interruptionReason)
Sets the status of the to-do.
|
Modifier and Type | Method and Description |
---|---|
TodoStatus |
Todo.getStatus() |
Modifier and Type | Method and Description |
---|---|
List<Todo> |
ModelInstance.findTodos(TodoStatus status)
Finds todos created by this model instance with the given status.
|
List<Todo> |
ModelInstance.findTodos(TodoStatus status,
String title)
Finds todos created by this model instance with the given status and a given title.
|
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.