public static interface Authorizations.Entry
Modifier and Type | Method and Description |
---|---|
int |
getClient() |
java.lang.String |
getDescription()
Returns the number of client followed by the description.
|
boolean |
isExecute() |
boolean |
isRead() |
boolean |
isSelected()
Used in agent assignments only.
|
boolean |
isWrite() |
void |
setExecute(boolean value)
Sets execute permission.
|
void |
setRead(boolean value)
Sets read permission.
|
void |
setSelected(boolean selection)
Used in agent assignments only.
|
void |
setWrite(boolean value)
Sets write permission.
|
java.lang.String getDescription()
int getClient()
boolean isRead()
boolean isWrite()
boolean isExecute()
void setRead(boolean value)
value
- True to enable the read permissionvoid setWrite(boolean value)
value
- True to enable write permissionvoid setExecute(boolean value)
value
- True to enable execute permissionboolean isSelected()
void setSelected(boolean selection)
true
if the client should be considered for Agent assignment.
The Agent only obtains the rights that have been defined.
Example:
The Agent UNIX01 possesses all rights in clients 1, 2 and 3.
You want to delete the execution right for UNIX Agents in client 3.
Set the parameter to true
for this client and call setExecute(false).
The right for client 3 in Agent UNIX01 will now be adjusted when a client assignment is triggered.
All rights for clients 1 and 2 remain unchanged in the Agent object.selection
- true if the client should be considered for Agent assignment.