Package com.uc4.communication.requests
Class CheckUserPrivileges
- java.lang.Object
-
- com.uc4.communication.requests.XMLRequest
-
- com.uc4.communication.requests.CheckUserPrivileges
-
- All Implemented Interfaces:
java.lang.Iterable<CheckUserPrivileges.Candidate>
public class CheckUserPrivileges extends XMLRequest implements java.lang.Iterable<CheckUserPrivileges.Candidate>
Checks privileges of users. For each privilege to check a new instance ofCheckUserPrivileges.Candidate
needs to be created. The iterator of this class can be used to get the results of the check the request has been sent to the Automation Engine.Example:
CheckUserPrivileges.Candidate user1 = new CheckUserPrivileges.Candidate(new UC4UserName("ANG/DEV"), Privilege.ACCESS_NOFOLDER); CheckUserPrivileges.Candidate user2 = new CheckUserPrivileges.Candidate(new UC4UserName("ANG/DEV"), Privilege.ILM_ACTIONS); CheckUserPrivileges check = new CheckUserPrivileges(user1, user2); uc4.sendRequestAndWait(check); for (CheckUserPrivileges.Candidate c : check) { if (c.getResult()) { System.out.println("User "+c.getUser()+" holds the privilege "+c.getPrivilege()); } else { System.out.println("User "+c.getUser()+" does not hold the privilege "+c.getPrivilege()); } }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CheckUserPrivileges.Candidate
Stores the name of the user, a privilege to check and the result of the check after the request has been sent.
-
Constructor Summary
Constructors Constructor Description CheckUserPrivileges(CheckUserPrivileges.Candidate... candidates)
Creates a newCheckUserPrivileges
request.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
createRequest(com.uc4.util.XMLDocument doc, org.w3c.dom.Element request, ConnectionAttributes sessionInfo)
Creates the XML Document for the request.protected java.lang.String
getSrc()
Returns the request source.protected void
handleContent(com.uc4.util.XMLDocument doc, ConnectionAttributes session)
Sub classes extract the values from the XML document and provide public getter methods.protected boolean
isAllowedInClientZero()
This method is used internally.java.util.Iterator<CheckUserPrivileges.Candidate>
iterator()
int
size()
Returns the number of candidates.-
Methods inherited from class com.uc4.communication.requests.XMLRequest
assertClientZero, assertServerVersion, checkClient, checkID, checkLnr, checkNull, checkSelStatisticsPrivilege, checkSystemOverviewPrivilege, checkUC4ObjectEmptyName, checkUC4ObjectName, createNATFor, createNATRequest, emptyAttributes, getAllMessageBoxes, getMessageBox, getRequestID, handleResponse, ignoreMessageBox, send, setMessageBox, showQuarantineNotification
-
-
-
-
Constructor Detail
-
CheckUserPrivileges
public CheckUserPrivileges(CheckUserPrivileges.Candidate... candidates)
Creates a newCheckUserPrivileges
request.- Parameters:
candidates
- Candidates to test
-
-
Method Detail
-
createRequest
protected void createRequest(com.uc4.util.XMLDocument doc, org.w3c.dom.Element request, ConnectionAttributes sessionInfo)
Description copied from class:XMLRequest
Creates the XML Document for the request. This method is used internally.- Specified by:
createRequest
in classXMLRequest
- Parameters:
doc
- Document, used to create new Elementsrequest
- Request Element - classes append information to this request elementsessionInfo
- Information about the session
-
handleContent
protected void handleContent(com.uc4.util.XMLDocument doc, ConnectionAttributes session)
Description copied from class:XMLRequest
Sub classes extract the values from the XML document and provide public getter methods.- Overrides:
handleContent
in classXMLRequest
- Parameters:
doc
- XML Documentsession
- Info about the user session
-
getSrc
protected java.lang.String getSrc()
Description copied from class:XMLRequest
Returns the request source. This method is used internally.- Specified by:
getSrc
in classXMLRequest
- Returns:
- Source
-
iterator
public java.util.Iterator<CheckUserPrivileges.Candidate> iterator()
- Specified by:
iterator
in interfacejava.lang.Iterable<CheckUserPrivileges.Candidate>
-
size
public int size()
Returns the number of candidates.- Returns:
- Size
-
isAllowedInClientZero
protected boolean isAllowedInClientZero()
Description copied from class:XMLRequest
This method is used internally. Tests if thisXMLRequest
is allowed in client 0. The default implementation returnsfalse
, subclasses may override.- Overrides:
isAllowedInClientZero
in classXMLRequest
- Returns:
true
if this request is allowed in client 0,false
otherwise
-
-