Modifier and Type | Method and Description |
---|---|
User |
Task.getCreator()
Ger task creator
|
User |
TaskState.getCreator()
The user creating this state
|
User |
ClientScriptContext.getUser()
Provides the user object for this context.
|
User |
Connection.getUser()
Return the user of the current session
|
User |
TaskErrorInfo.getUser()
Get user object
|
User |
UserService.getUser()
Shortcut for
getConnection().getUser() |
User |
WorkflowContext.getUser()
Get the owner User of this WorkflowContext
|
Modifier and Type | Method and Description |
---|---|
void |
MessageService.sendMessage(String message,
List<User> recipients)
Sends the given message to the users specified by the given recipients list.
|
Modifier and Type | Method and Description |
---|---|
User |
UserStorage.createUser(String loginName,
String password)
Create a new user.
|
User |
UserStorage.getUserByID(long id)
Gets the user with the specified ID
|
User |
UserStorage.getUserByLogin(String login)
Gets the user with the specified login name.
|
Modifier and Type | Method and Description |
---|---|
List<User> |
UserStorage.findUsers(String pattern)
Returns an unmodifiable list of users, which matches the given
pattern . |
List<User> |
UserStorage.findUsers(String pattern,
UserStorage.Order orderBy,
boolean ascending)
Returns an unmodifiable list of users, which matches the given
pattern . |
List<User> |
UserStorage.getDeactivatedUsers()
Returns an unmodifiable lazy list of all deactivated users.
|
List<User> |
UserStorage.getDeactivatedUsers(UserStorage.Order orderBy,
boolean ascending)
Returns an unmodifiable list of all deactivated users.
|
List<User> |
UserStorage.getUsers()
Returns an unmodifiable lazy list of all
User objects. |
List<User> |
UserStorage.getUsers(UserStorage.Order orderBy,
boolean ascending)
Returns an unmodifiable list of all users.
|
List<User> |
UserStorage.getUsersByID(Long[] ids)
Returns users with the given ids.
|
Modifier and Type | Method and Description |
---|---|
boolean |
UserStorage.removeUser(User user)
Returns
true if the given user could be deleted. |
void |
UserStorage.setUser(User user)
Write back a user to server.
|
Modifier and Type | Method and Description |
---|---|
List<User> |
Package.getAuthorisedUsers()
Gets an unmodifiable list of authorised
User 's
of this package. |
List<User> |
Package.getPublishUsers()
Gets an unmodifiable list of
User 's which have the
permission 'publish' for this package. |
List<User> |
Package.getResponsibleUsers()
Gets an unmodifiable list of responsible
User 's
of this package. |
Modifier and Type | Method and Description |
---|---|
void |
Package.addAuthorisedUser(User user)
Adds the given user to the list of
authorised
User 's of this package. |
void |
Package.addPublishUser(User user)
Adds the given user to the list of
User 's
which have the permission 'publish' for this package. |
void |
Package.addResponsibleUser(User user)
Adds the given user to the list of
responsible
User 's of this package. |
void |
Package.removeAuthorisedUser(User user)
Removes the given user from the list of
authorised
User 's of this package. |
void |
Package.removePublishUser(User user)
Removes the given user from the list of
User 's
which have the permission 'publish' for this package. |
void |
Package.removeResponsibleUser(User user)
Removes the given user from the list of
responsible
User 's of this package. |
Modifier and Type | Method and Description |
---|---|
User[] |
Group.getUsers()
Get all users in this group
|
Modifier and Type | Method and Description |
---|---|
List<User> |
Project.getUsers()
Returns a list of all
users |
Modifier and Type | Method and Description |
---|---|
boolean |
Project.accessAllowed(User user)
Is a user allowed to acces the project
|
boolean |
Group.addUser(User user)
Adds the given
user to this group. |
void |
Project.addUser(User user)
Add an user to the project and giving him the access right for this project.
|
void |
Group.addUsers(User[] users)
Adds the given
users to this group. |
List<Group> |
Project.getGroups(User user)
|
Group[] |
Project.getGroupsArray(User user)
Returns groups of this project where the user belongs to (at least EVERYONE).
|
boolean |
Project.isAdmin(User user)
|
boolean |
Group.isMember(User user)
Verifies whether the given user to be a member of this group.
|
boolean |
Project.isMember(User user)
Indicates whether the given user is member of this project.
|
boolean |
Group.removeUser(User user)
Remove user from group
|
void |
Project.removeUser(User user)
Remove user from project
|
void |
Group.removeUsers(User[] users)
Remove the given
users from this group. |
void |
RemoteProjectConfiguration.setLoginUser(User user,
String loginPassword)
Sets the user and password which should be used for the remote project connection.
|
Modifier and Type | Method and Description |
---|---|
User |
ScheduleEntryControl.getUser()
Returns the
user who initialized execution of the belonging schedule entry,
or null if user is unknown (scheduled start for example). |
Modifier and Type | Method and Description |
---|---|
List<User> |
MaintenanceModeTask.getAllowedUsers()
The server administrator may always connect to the server, even if the maintenance mode is active.
|
List<User> |
ScheduleEntry.getUsers()
a
List of type User containing all users allowed to execute this ScheduleEntry interactive. |
Modifier and Type | Method and Description |
---|---|
void |
ScheduleEntry.addUser(User user)
Adds the given user which should be allowed to execute this schedule entry.
|
void |
ScheduleEntry.removeUser(User user)
Removes the given user who shouldn't be allowed to execute the schedule entry anymore.
|
Modifier and Type | Method and Description |
---|---|
void |
MaintenanceModeTask.setAllowedUsers(Collection<User> allowedUsers)
Specifies all users who are allowed to connect to the server even if the maintenance mode is active.
|
Modifier and Type | Method and Description |
---|---|
void |
Request.setPermission(User user,
int permission)
Sets the permissions for searched elements.
|
Modifier and Type | Method and Description |
---|---|
User |
StoreElement.getEditor() |
User |
IDProvider.getReleasedBy()
The last user who released this node or
null if this node has never been released. |
Modifier and Type | Method and Description |
---|---|
Permission |
StoreElement.getPermission(User user)
Returns the correct permission object even if permission checking is turned off.
|
boolean |
StoreElement.isWorkflowAllowed(Workflow workflow,
User user)
Returns
true if
workflow is not null and is explicitly allowed to be started on this element by given user or
workflow is null and any workflow is allowed to be started on this element by given user . |
void |
StoreElement.removePermission(User user)
Removes the permission object for the given user.
|
void |
StoreElement.removePermission(User[] users)
Removes the permission object for several given users.
|
void |
StoreElement.setPermission(User[] users,
Permission permission)
Set the defined permission for several users.
|
void |
StoreElement.setPermission(User user,
Permission permission)
Set the defined permission for the given user.
|
Constructor and Description |
---|
LockException(String message,
User user,
long objectId)
Constructor for this class.
|
LockException(String message,
User user,
long objectId,
Throwable cause)
Constructor for this class.
|
Modifier and Type | Method and Description |
---|---|
User[] |
WorkflowPermission.getAllowedUsers()
Get all users which are allowed to execute the workflow.
|
User[] |
WorkflowTransitionPermission.getAllowedUsers()
Provides the users allowed to perform the transition.
|
Modifier and Type | Method and Description |
---|---|
void |
WorkflowPermission.allowUser(User user)
Allow the given user to execute the workflow.
|
void |
WorkflowTransitionPermission.allowUser(User user)
Allows the given user to perform the transition.
|
void |
WorkflowPermission.forbidUser(User user)
Forbid the given user to execute the workflow.
|
void |
WorkflowTransitionPermission.forbidUser(User user)
Forbids the given user to perform the transition.
|
boolean |
WorkflowPermission.isUserAllowed(User user)
Check if the given user is allowed to execute the workflow.
|
boolean |
WorkflowTransitionPermission.isUserAllowed(User user)
Ascertains whether the given user is allowed to perform the transition.
|
void |
WorkflowPermission.setAllowedUsers(User[] users)
Set several user that should be allowed to execute the workflow.
|
void |
WorkflowTransitionPermission.setAllowedUsers(User[] users)
Defines the users allowed to perform the transition.
|
Constructor and Description |
---|
WorkflowLockException(String message,
User user,
long objectId)
Constructor for this exception based on a message, the operating user and the targeted element.
|
Modifier and Type | Method and Description |
---|---|
User |
UserAgent.getUser()
Returns the current user of the belonging client session.
|
User |
ProjectMembersAgent.getUserByLogin(String login)
Gets the user with the specified login name.
|
Modifier and Type | Method and Description |
---|---|
List<User> |
ProjectMembersAgent.getUsers()
Get all users of the current project.
|
Modifier and Type | Method and Description |
---|---|
Collection<Group> |
GroupsAgent.getUserGroups(User user)
Deprecated.
since 5.2.1502 use
ProjectMembersAgent.getUserGroups(User) |
Collection<Group> |
ProjectMembersAgent.getUserGroups(User user)
Get all project groups where the provided user is a member of.
|
boolean |
ProjectAgent.isAdmin(User user)
Indicates, whether the given user is an administrator of the project.
|
Copyright © 2021 e-Spirit AG. All Rights Reserved. Build 5.2.210210