Package com.uc4.api.objects
Class Authorizations
- java.lang.Object
-
- com.uc4.api.objects.Authorizations
-
- All Implemented Interfaces:
java.lang.Iterable<Authorizations.Entry>
public class Authorizations extends java.lang.Object implements java.lang.Iterable<Authorizations.Entry>
Authorizations of Agents.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceAuthorizations.EntryRepresents a single authorization for a client.
-
Constructor Summary
Constructors Modifier Constructor Description protectedAuthorizations(com.uc4.util.XMLDocument doc, java.lang.String haclElementName, boolean isAssignment)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Sets the Read, Write and Execute permission for each client tofalse.java.util.Iterator<Authorizations.Entry>iterator()Returns an iterator overAuthorizationItem.booleansetHostAuthorization(int client, boolean read, boolean write, boolean execute)Sets the authorizations for a client.booleansetHostAuthorization(int client, boolean read, boolean write, boolean execute, boolean selection)Sets the authorizations in case of Agent assignments.intsize()protected voidstore(com.uc4.util.XMLDocument doc, org.w3c.dom.Element request)
-
-
-
Method Detail
-
size
public int size()
- Returns:
- Number of authorization entries encapsulated by this class
-
store
protected void store(com.uc4.util.XMLDocument doc, org.w3c.dom.Element request)
-
setHostAuthorization
public boolean setHostAuthorization(int client, boolean read, boolean write, boolean execute)Sets the authorizations for a client.- Parameters:
client- Number of the clientread- Read permissionwrite- Write permissionexecute- Execute permission- Returns:
- true if the modification was successful, false if the client was not found
-
setHostAuthorization
public boolean setHostAuthorization(int client, boolean read, boolean write, boolean execute, boolean selection)Sets the authorizations in case of Agent assignments. This method has an additional parameter for the selection field.- Parameters:
client- Number of the clientread- Read permissionwrite- Write permissionexecute- Execute permissionselection- Selection- Returns:
- true if the modification was successful, false if the client was not found
-
iterator
public java.util.Iterator<Authorizations.Entry> iterator()
Returns an iterator overAuthorizationItem.- Specified by:
iteratorin interfacejava.lang.Iterable<Authorizations.Entry>- Returns:
- Iterator
-
clear
public void clear()
Sets the Read, Write and Execute permission for each client tofalse.
-
-