Package | Description |
---|---|
com.whitestein.lsps.orgstructure.dao |
Data access objects for persistent classes for Organization Structure.
|
com.whitestein.lsps.orgstructure.dao.jpa | |
com.whitestein.lsps.orgstructure.entity |
Persistent entities for the Organizational Structure.
|
com.whitestein.lsps.pm |
Modifier and Type | Method and Description |
---|---|
Person |
PersonDao.findByLoginName(String loginName)
Returns person with the login name.
|
Modifier and Type | Method and Description |
---|---|
Collection<Person> |
PersonDao.findAll()
Returns a collection of all
Person instances that exist in the
persistent storage or an empty collection if there is no such instance. |
QueryResult<Person> |
PersonDao.findAll(PersonCriteria personCriteria)
Returns a result of the query specified by given
personCriteria . |
Collection<Person> |
PersonDao.findForSecuirityRole(SecurityRole securityRole)
Returns all persons that save assigned the security role.
|
Modifier and Type | Method and Description |
---|---|
Person |
JpaPersonDao.findByLoginName(String login) |
Modifier and Type | Method and Description |
---|---|
Collection<Person> |
JpaPersonDao.findAll() |
QueryResult<Person> |
JpaPersonDao.findAll(PersonCriteria criteria) |
Collection<Person> |
JpaPersonDao.findForSecuirityRole(SecurityRole securityRole) |
Modifier and Type | Method and Description |
---|---|
Person |
Person.addRole(Role role)
Adds given
role to the roles the person is assigned to. |
Person |
Person.addSubstitute(Person substitute)
Adds a substitute.
|
Person |
Person.removeRole(Role role)
Removes given
role from the roles the person is assigned to. |
Person |
Person.removeSubstitute(Person substitute)
Removes a substitute.
|
Person |
Person.setDetail(String detailName,
String detailValue)
Adds or updates the detail identified by given
detailName . |
Person |
Person.setSetting(String settingName,
byte[] settingContent)
Adds or updates the setting identified by given
settingName . |
Modifier and Type | Method and Description |
---|---|
Set<Person> |
Person.getActivelySubstituted()
Returns a collection of all actively substituted persons including transitive substitutions.
|
Set<Person> |
Person.getActiveSubstitutes()
Returns a set of active substitutes of this person including transitive substitutions.
|
Set<Person> |
Person.getDirectlySubstituted()
Returns a collection of directly substituted Persons for this Person.
|
Set<Person> |
Person.getDirectSubstitutes()
Returns a set of substitutes of this Person.
|
Modifier and Type | Method and Description |
---|---|
Person |
Person.addSubstitute(Person substitute)
Adds a substitute.
|
Person |
Person.removeSubstitute(Person substitute)
Removes a substitute.
|
Modifier and Type | Method and Description |
---|---|
void |
Person.setSubstitutes(Collection<Person> substitutes)
Sets a new set of substitutes for this Person.
|
Modifier and Type | Method and Description |
---|---|
protected Person |
PersonServiceBase.checkPersonWithIdExists(String personId) |
protected Person |
PersonServiceBase.getPersonWithLogin(String name) |
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.