|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectgov.nih.nci.cagrid.opensaml.SAMLObject
gov.nih.nci.cagrid.opensaml.SAMLStatement
gov.nih.nci.cagrid.opensaml.SAMLSubjectStatement
gov.nih.nci.cagrid.opensaml.SAMLAuthorizationDecisionStatement
public class SAMLAuthorizationDecisionStatement
Represents a SAML authorization decision statement.
| Field Summary | |
|---|---|
protected java.util.ArrayList |
actions
|
protected java.lang.String |
decision
|
protected java.util.ArrayList |
evidence
|
protected java.lang.String |
resource
|
| Fields inherited from class gov.nih.nci.cagrid.opensaml.SAMLSubjectStatement |
|---|
subject |
| Fields inherited from class gov.nih.nci.cagrid.opensaml.SAMLStatement |
|---|
statementTypeMap |
| Fields inherited from class gov.nih.nci.cagrid.opensaml.SAMLObject |
|---|
config, dirty, log, parentObject, root |
| Constructor Summary | |
|---|---|
SAMLAuthorizationDecisionStatement()
Default constructor |
|
SAMLAuthorizationDecisionStatement(org.w3c.dom.Element e)
Reconstructs a statement from a DOM tree |
|
SAMLAuthorizationDecisionStatement(java.io.InputStream in)
Reconstructs a statement from a stream |
|
SAMLAuthorizationDecisionStatement(SAMLSubject subject,
java.lang.String resource,
java.lang.String decision,
java.util.Collection actions,
java.util.Collection evidence)
Builds an AuthorizationDecisionStatement out of its component parts |
|
| Method Summary | |
|---|---|
void |
addAction(SAMLAction action)
Adds an action to the statement |
void |
addEvidence(java.lang.Object evidence)
Adds an evidence element |
protected org.w3c.dom.Element |
buildRoot(org.w3c.dom.Document doc,
boolean xmlns)
Delegates the process of building the root element of an object and inserting appropriate namespaces. |
void |
checkValidity()
Evaluates the object's content to see if it is currently valid if serialized. |
java.lang.Object |
clone()
Copies a SAML object such that no dependencies exist between the original and the copy |
void |
fromDOM(org.w3c.dom.Element e)
Initialization of an object from a DOM element |
java.util.Iterator |
getActions()
Gets the actions inside the statement |
java.lang.String |
getDecision()
Gets the decision from inside the statement |
java.util.Iterator |
getEvidence()
Gets the evidence inside the statement |
java.lang.String |
getResource()
Gets the resource URI inside the statement |
void |
removeAction(int index)
Removes an action by position (zero-based) |
void |
removeEvidence(int index)
Removes an evidence element by position (zero-based) |
void |
setActions(java.util.Collection actions)
Sets the actions to include in the statement |
void |
setDecision(java.lang.String decision)
Sets the decision inside the statement |
void |
setEvidence(java.util.Collection evidence)
Sets the evidence to include in the statement |
void |
setResource(java.lang.String resource)
Sets the resource URI inside the statement |
org.w3c.dom.Node |
toDOM(org.w3c.dom.Document doc,
boolean xmlns)
Transforms the object into a DOM tree using an existing document context |
| Methods inherited from class gov.nih.nci.cagrid.opensaml.SAMLSubjectStatement |
|---|
getSubject, setSubject |
| Methods inherited from class gov.nih.nci.cagrid.opensaml.SAMLStatement |
|---|
getInstance, getInstance, regFactory, unregFactory |
| Methods inherited from class gov.nih.nci.cagrid.opensaml.SAMLObject |
|---|
fromStream, fromStream, getParent, plantRoot, setDirty, setParent, toBase64, toDOM, toDOM, toDOM, toStream, toString |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected java.lang.String resource
protected java.lang.String decision
protected java.util.ArrayList actions
protected java.util.ArrayList evidence
| Constructor Detail |
|---|
public SAMLAuthorizationDecisionStatement()
public SAMLAuthorizationDecisionStatement(SAMLSubject subject,
java.lang.String resource,
java.lang.String decision,
java.util.Collection actions,
java.util.Collection evidence)
throws SAMLException
subject - subject of the statementresource - URI of the resource being accessed at the time of
the statementactions - specific actions the decision applies to, must be SAMLAction objectsevidence - evidence which may be considered, must be String or SAMLAssertion objects
SAMLException - Raised if an AuthorizationDecisionStatement
cannot be constructed from the supplied information
public SAMLAuthorizationDecisionStatement(org.w3c.dom.Element e)
throws SAMLException
e - The root of a DOM tree
SAMLException - Thrown if the object cannot be constructed
public SAMLAuthorizationDecisionStatement(java.io.InputStream in)
throws SAMLException
in - A stream containing XML
SAMLException - Raised if an exception occurs while constructing
the object.| Method Detail |
|---|
public void fromDOM(org.w3c.dom.Element e)
throws SAMLException
SAMLObject
fromDOM in class SAMLSubjectStatemente - Root element of a DOM tree
SAMLException - Raised if an exception occurs while constructing
the objectSAMLObject.fromDOM(org.w3c.dom.Element)public java.lang.String getResource()
public void setResource(java.lang.String resource)
resource - The resource URIpublic java.lang.String getDecision()
public void setDecision(java.lang.String decision)
decision - The decisionpublic java.util.Iterator getActions()
public void setActions(java.util.Collection actions)
throws SAMLException
actions - The actions to include
SAMLException - Raised if the actions are invalid
public void addAction(SAMLAction action)
throws SAMLException
action - The action to add
SAMLException - Raised if the action if invalidpublic void removeAction(int index)
index - The position of the action to removepublic java.util.Iterator getEvidence()
public void setEvidence(java.util.Collection evidence)
throws SAMLException
evidence - The evidence to include
SAMLException - Raised if the evidence is invalid
public void addEvidence(java.lang.Object evidence)
throws SAMLException
evidence - a String or SAMLAssertion
SAMLException - Raised if an invalid kind of object is provided
public void removeEvidence(int index)
throws java.lang.IndexOutOfBoundsException
index - The position of the element to remove
java.lang.IndexOutOfBoundsException
protected org.w3c.dom.Element buildRoot(org.w3c.dom.Document doc,
boolean xmlns)
SAMLObject
buildRoot in class SAMLObjectdoc - The document context to usexmlns - Include namespace(s) on root element?
SAMLObject.buildRoot(org.w3c.dom.Document,boolean)
public org.w3c.dom.Node toDOM(org.w3c.dom.Document doc,
boolean xmlns)
throws SAMLException
SAMLObject
toDOM in class SAMLSubjectStatementdoc - A Document object to use in manufacturing the treexmlns - Include namespace(s) on root element?
SAMLException - Raised if the object is incompletely definedSAMLObject.toDOM(org.w3c.dom.Document,boolean)
public void checkValidity()
throws SAMLException
SAMLObject
checkValidity in class SAMLSubjectStatementSAMLException - Raised if the serialized object would be invalid SAML,
excluding any embedded objectsSAMLObject.checkValidity()
public java.lang.Object clone()
throws java.lang.CloneNotSupportedException
clone in class SAMLSubjectStatementjava.lang.CloneNotSupportedExceptionObject.clone()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||