Package | Description |
---|---|
com.whitestein.lsps.human |
Services for accessing the functionality related to human-oriented processes.
|
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.function |
Functions related to human-oriented data and tasks.
|
Modifier and Type | Method and Description |
---|---|
long |
TodoService.getTodoCount(TodoListCriteria criteria)
Returns the count of to-dos relevant for the current user.
|
long |
TodoServiceBean.getTodoCount(TodoListCriteria criteria) |
TodoList |
TodoService.getTodoList(TodoListCriteria criteria)
Returns the list of to-dos relevant for the current user.
|
TodoList |
TodoServiceBean.getTodoList(TodoListCriteria criteria) |
TodoList |
TodoService.getTodoListForPerson(String personId,
TodoListCriteria criteria)
Returns the list of to-dos relevant for the user identified by the given
id . |
TodoList |
TodoServiceBean.getTodoListForPerson(String personId,
TodoListCriteria criteria) |
List<Long> |
TodoService.getTodoListIdsForPerson(String personId,
TodoListCriteria criteria)
Returns the list of to-dos ids relevant for the user identified by the given
id . |
List<Long> |
TodoServiceBean.getTodoListIdsForPerson(String personId,
TodoListCriteria criteria) |
Modifier and Type | Method and Description |
---|---|
Long |
TodoDao.countLockedTodos(Person person,
TodoListCriteria criteria)
Returns number of todos locked by user
|
Long |
TodoDao.countTodos(Person person,
TodoListCriteria criteria,
boolean unlockedOnly)
Returns number of todos visible to user, but not locked by user (if unlockedOnly is true).
|
QueryResult<Todo> |
TodoDao.getTodoList(Person person,
TodoListCriteria criteria)
Returns
person 's todo list, according to given paging criteria. |
long[] |
TodoDao.getTodoListIds(Person person,
TodoListCriteria criteria)
Returns
person 's todo list ids, according to given paging criteria. |
Modifier and Type | Method and Description |
---|---|
Long |
JpaTodoDao.countLockedTodos(Person person,
TodoListCriteria criteria) |
Long |
JpaTodoDao.countTodos(Person person,
TodoListCriteria criteria,
boolean unlockedOnly) |
QueryResult<Todo> |
JpaTodoDao.getTodoList(Person person,
TodoListCriteria criteria) |
long[] |
JpaTodoDao.getTodoListIds(Person person,
TodoListCriteria criteria) |
Modifier and Type | Method and Description |
---|---|
SetHolder |
HumanFunctionsImpl.getTodosFor(ExecutionContext context,
RecordHolder person,
TodoListCriteria todoListCriteria) |
SetHolder |
HumanFunctions.getTodosFor(ExecutionContext context,
RecordHolder person,
TodoListCriteria todoListCriteria)
Returns a set of active todos assigned to the specified person according to the criteria.
|
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.