Package | Description |
---|---|
com.whitestein.lsps.engine.dao |
Data access objects for access to different parts of process execution.
|
com.whitestein.lsps.engine.dao.jpa | |
com.whitestein.lsps.engine.dto |
Data transfer objects for engine related data.
|
com.whitestein.lsps.engine.sharedrecord | |
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.modulemanager.dao | |
com.whitestein.lsps.modulemanager.dao.jpa | |
com.whitestein.lsps.orgstructure.dao |
Data access objects for persistent classes for Organization Structure.
|
com.whitestein.lsps.orgstructure.dao.jpa | |
com.whitestein.lsps.stdlib.dao |
Data access objects used by other classes in the standard library.
|
com.whitestein.lsps.stdlib.dao.jpa | |
com.whitestein.lsps.wsserver.dao | |
com.whitestein.lsps.wsserver.dao.jpa |
Modifier and Type | Method and Description |
---|---|
QueryResult<ModelInstanceEntity> |
ModelInstanceDao.findByCriteria(ModelInstanceCriteria criteria)
Returns process instances according to the given criteria.
|
QueryResult<RollbackItem> |
RollbackItemDao.findByCriteria(RollbackInfoCriteria criteria)
Returns a list of all rollback-items satisfying the given criteria
ordered by their create-date.
|
Modifier and Type | Method and Description |
---|---|
QueryResult<ModelInstanceEntity> |
JpaModelInstanceDao.findByCriteria(ModelInstanceCriteria criteria) |
QueryResult<RollbackItem> |
JpaRollbackItemDao.findByCriteria(RollbackInfoCriteria criteria) |
Constructor and Description |
---|
ModuleEntryList(QueryResult<ModuleEntry> entries)
Creates new instance.
|
ModuleList(QueryResult<Module> modules)
Creates new instance.
|
RollbackInfoList(QueryResult<RollbackInfo> rollbackInfos)
Creates new instance.
|
Modifier and Type | Method and Description |
---|---|
QueryResult<com.whitestein.lsps.model.sharedrecord.ExternalRecordEntity> |
QueryExecutor.getAll(RecordType recordType,
OrderingAndPagingCriteria pagingCriteria)
Returns all the entities for the given type.
|
QueryResult<com.whitestein.lsps.model.sharedrecord.ExternalRecordEntity> |
QueryExecutor.getResultList(com.whitestein.lsps.model.sharedrecord.QuerySpecification spec,
Collection<?> parameters,
OrderingAndPagingCriteria pagingCriteria)
Executes the given query and returns a list of results.
|
Modifier and Type | Method and Description |
---|---|
QueryResult<SavedDocument> |
SavedDocumentDao.findByCriteria(SavedDocumentCriteria criteria)
Returns saved documents which fulfill the given criteria.
|
QueryResult<Todo> |
TodoDao.findByCriteria(TodoCriteria criteria)
Returns todos which fulfill the given criteria.
|
QueryResult<Todo> |
TodoDao.getPersonalTodoList(Person person,
PagingCriteria criteria)
Returns
person 's personal todo list (all todos currently locked
by given person ), according to given paging criteria ,
sorted by todo priority and issued date. |
QueryResult<Todo> |
TodoDao.getTodoList(Person person,
TodoListCriteria criteria)
Returns
person 's todo list, according to given paging criteria. |
Modifier and Type | Method and Description |
---|---|
QueryResult<SavedDocument> |
JpaSavedDocumentDao.findByCriteria(SavedDocumentCriteria criteria) |
QueryResult<Todo> |
JpaTodoDao.findByCriteria(TodoCriteria criteria) |
QueryResult<Todo> |
JpaTodoDao.getPersonalTodoList(Person person,
PagingCriteria criteria) |
QueryResult<Todo> |
JpaTodoDao.getTodoList(Person person,
TodoListCriteria criteria) |
Constructor and Description |
---|
SavedDocumentList(QueryResult<SavedDocument> savedDocuments)
Creates new instance.
|
TodoList(QueryResult<Todo> todos)
Creates new instance.
|
Modifier and Type | Method and Description |
---|---|
QueryResult<Module> |
ModelManagementDao.getModules(ModuleCriteria moduleCriteria)
Returns all models according to given criteria
|
Modifier and Type | Method and Description |
---|---|
QueryResult<Module> |
JpaModelManagementDao.getModules(ModuleCriteria criteria) |
Modifier and Type | Method and Description |
---|---|
QueryResult<Person> |
PersonDao.findAll(PersonCriteria personCriteria)
Returns a result of the query specified by given
personCriteria . |
Modifier and Type | Method and Description |
---|---|
QueryResult<Person> |
JpaPersonDao.findAll(PersonCriteria criteria) |
Modifier and Type | Method and Description |
---|---|
QueryResult<Log> |
LoggingDao.getLogs(LogCriteria criteria)
Returns log entries for the given criteria
|
Modifier and Type | Method and Description |
---|---|
QueryResult<Log> |
JpaLoggingDao.getLogs(LogCriteria criteria) |
Modifier and Type | Method and Description |
---|---|
QueryResult<Object[]> |
WsRequestHandlerDao.findRequestHandlers(WsRequestHandlerCriteria criteria)
Finds all
WsRequestHandler objects which conforms the search criteria. |
Modifier and Type | Method and Description |
---|---|
QueryResult<Object[]> |
JpaWsRequestHandlerDao.findRequestHandlers(WsRequestHandlerCriteria criteria) |
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.