Package | Description |
---|---|
com.whitestein.lsps.human |
Services for accessing the functionality related to human-oriented processes.
|
com.whitestein.lsps.os |
Services for person management, person-role mapping, and role querying.
|
com.whitestein.lsps.pm |
Modifier and Type | Method and Description |
---|---|
void |
TodoService.delegate(long todoId,
Collection<String> delegates)
Delegates the to-do identified by its ID to a given set of delegates identified by their
ID-s.
|
void |
TodoServiceBean.delegate(long todoId,
Collection<String> delegateIds) |
Collection<Person> |
TodoService.getAllOnBehalfOf(long todoId,
String personId)
Returns the set of persons on behalf of which the user sees the to-do in his to-do list.
|
Collection<Person> |
TodoServiceBean.getAllOnBehalfOf(long todoId,
String personId) |
TodoAuthorization |
TodoService.getAuthorization(long todoId,
String personId)
Returns the reason why the person can see the to-do in his to-do list.
|
TodoAuthorization |
TodoServiceBean.getAuthorization(long todoId,
String personId) |
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) |
void |
TodoService.lockTodoForPerson(long todoId,
String personId)
Locks the to-do for the given person.
|
void |
TodoServiceBean.lockTodoForPerson(long todoId,
String personId) |
void |
TodoService.undoRejectTodo(long todoId,
String personId)
Undo the rejection of a to-do specified by its ID, by a person specified by its id.
|
void |
TodoServiceBean.undoRejectTodo(long todoId,
String personId) |
Modifier and Type | Method and Description |
---|---|
Person |
PersonManagementService.addPerson(Person person)
Adds new person into the application.
|
Person |
PersonManagementService.addPersonWithData(PersonData personData)
Adds new person into the application.
|
Person |
PersonManagementService.assignSecurityRolesToPerson(String personId,
List<String> securityRoleNames)
Assigns given list of security roles (specified by their names) to the user identified
by given
personId argument. |
void |
PersonService.deleteSetting(String personId,
String settingName)
Deletes the given personal setting.
|
PersonPicture |
PersonService.getPersonPicture(String personId)
Returns picture for person.
|
Collection<SecurityRole> |
PersonManagementService.getSecurityRoles(String personId)
Returns a collection of all the security roles currently assigned to the user identified by
given
personId or an empty collection if the user has no security roles assigned to
them. |
ByteData |
PersonService.getSetting(String personId,
String settingName)
Returns the personal setting with the given name.
|
void |
PersonService.setPersonPicture(String personId,
PersonPicture picture)
Sets picture for person.
|
void |
PersonService.setSetting(String personId,
String settingName,
ByteData settingContent)
Sets the given personal setting.
|
Person |
PersonManagementService.updatePerson(Person person)
Updates the person.
|
Person |
PersonManagementService.updatePersonLogin(String personId,
String newLogin)
Updates current login of the user identified by given
personId with the content
of newLogin argument. |
Person |
PersonManagementService.updatePersonPassword(String personId,
String newPassword)
Updates current password of the user identified by given
personId with the content
of newPassword argument. |
Person |
PersonManagementService.updatePersonWithData(PersonData personData)
Updates the person.
|
Modifier and Type | Method and Description |
---|---|
Person |
PersonManagementServiceBean.addPerson(Person person) |
Person |
PersonManagementServiceBean.addPersonWithData(PersonData personData) |
Person |
PersonManagementServiceBean.assignSecurityRolesToPerson(String personId,
List<String> securityRoleNames) |
protected Person |
PersonServiceBase.checkPersonWithIdExists(String personId) |
void |
PersonServiceBase.deleteSetting(String personId,
String settingName) |
PersonPicture |
PersonServiceBase.getPersonPicture(String personId) |
protected Person |
PersonServiceBase.getPersonWithLogin(String name) |
Collection<SecurityRole> |
PersonManagementServiceBean.getSecurityRoles(String personId) |
ByteData |
PersonServiceBase.getSetting(String personId,
String settingName) |
void |
PersonServiceBase.setPersonPicture(String personId,
PersonPicture picture) |
void |
PersonServiceBase.setSetting(String personId,
String settingName,
ByteData settingContent) |
Person |
PersonManagementServiceBean.updatePerson(Person person) |
Person |
PersonManagementServiceBean.updatePersonLogin(String personId,
String newLogin) |
Person |
PersonManagementServiceBean.updatePersonPassword(String personId,
String newPassword) |
Person |
PersonManagementServiceBean.updatePersonWithData(PersonData personData) |
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.