Class ResponseImpl
-
- All Implemented Interfaces:
XMLObject,SAMLObject,SignableSAMLObject,Response,ResponseAbstractType,SignableXMLObject
public class ResponseImpl extends ResponseAbstractTypeImpl implements Response
Implementation of theResponseObject.
-
-
Field Summary
Fields Modifier and Type Field Description private XMLObjectChildrenList<Assertion>assertionsList of all the Assertions.private StatusstatusStatus associated with this element.-
Fields inherited from interface org.opensaml.saml.saml1.core.Response
DEFAULT_ELEMENT_LOCAL_NAME, DEFAULT_ELEMENT_NAME, TYPE_LOCAL_NAME, TYPE_NAME
-
Fields inherited from interface org.opensaml.saml.saml1.core.ResponseAbstractType
ID_ATTRIB_NAME, INRESPONSETO_ATTRIB_NAME, ISSUEINSTANT_ATTRIB_NAME, ISSUEINSTANT_ATTRIB_QNAME, MAJORVERSION_ATTRIB_NAME, MINORVERSION_ATTRIB_NAME, RECIPIENT_ATTRIB_NAME
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedResponseImpl(String namespaceURI, String elementLocalName, String namespacePrefix)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Assertion>getAssertions()Return the objects representing theAssertion(element).List<XMLObject>getOrderedChildren()Gets an unmodifiable list of child elements in the order that they will appear in the DOM.StatusgetStatus()Return the object representing theStatus(element).voidsetStatus(Status s)Set the object representing theStatus(element).-
Methods inherited from class org.opensaml.saml.saml1.core.impl.ResponseAbstractTypeImpl
getID, getInResponseTo, getIssueInstant, getRecipient, getSignatureReferenceID, getVersion, setID, setInResponseTo, setIssueInstant, setRecipient, setVersion
-
Methods inherited from class org.opensaml.saml.common.AbstractSignableSAMLObject
equals, hashCode, setSignature
-
Methods inherited from class org.opensaml.xmlsec.signature.AbstractSignableXMLObject
getSignature, isSigned
-
Methods inherited from class org.opensaml.core.xml.AbstractXMLObject
detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getObjectMetadata, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, manageQualifiedAttributeNamespace, prepareAttributeValueForAssignment, prepareElementContentForAssignment, prepareForAssignment, prepareForAssignment, prepareForAssignment, registerOwnID, releaseChildrenDOM, releaseDOM, releaseParentDOM, releaseThisAndChildrenDOM, releaseThisandParentDOM, resolveID, resolveIDFromRoot, setDOM, setElementNamespacePrefix, setElementQName, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation, setSchemaType
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.opensaml.saml.saml1.core.ResponseAbstractType
getID, getInResponseTo, getIssueInstant, getRecipient, getVersion, setID, setInResponseTo, setIssueInstant, setRecipient, setVersion
-
Methods inherited from interface org.opensaml.saml.common.SignableSAMLObject
getSignatureReferenceID
-
Methods inherited from interface org.opensaml.xmlsec.signature.SignableXMLObject
getSignature, isSigned, setSignature
-
Methods inherited from interface org.opensaml.core.xml.XMLObject
detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getObjectMetadata, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
-
-
-
-
Field Detail
-
status
private Status status
Status associated with this element.
-
assertions
private final XMLObjectChildrenList<Assertion> assertions
List of all the Assertions.
-
-
Constructor Detail
-
ResponseImpl
protected ResponseImpl(String namespaceURI, String elementLocalName, String namespacePrefix)
Constructor.- Parameters:
namespaceURI- the namespace the element is inelementLocalName- the local name of the XML element this Object representsnamespacePrefix- the prefix for the given namespace
-
-
Method Detail
-
getAssertions
public List<Assertion> getAssertions()
Return the objects representing theAssertion(element).- Specified by:
getAssertionsin interfaceResponse- Returns:
- the Assertion objects
-
getStatus
public Status getStatus()
Return the object representing theStatus(element).
-
setStatus
public void setStatus(Status s)
Set the object representing theStatus(element).
-
getOrderedChildren
public List<XMLObject> getOrderedChildren()
Gets an unmodifiable list of child elements in the order that they will appear in the DOM.- Specified by:
getOrderedChildrenin interfaceXMLObject- Overrides:
getOrderedChildrenin classResponseAbstractTypeImpl- Returns:
- ordered list of child elements
-
-