Class RequestImpl
-
- All Implemented Interfaces:
XMLObject,SAMLObject,SignableSAMLObject,Request,RequestAbstractType,SignableXMLObject
public class RequestImpl extends RequestAbstractTypeImpl implements Request
Concrete implementation ofRequest.
-
-
Field Summary
Fields Modifier and Type Field Description private XMLObjectChildrenList<AssertionArtifact>assertionArtifactsThe List of AssertionArtifacts.private XMLObjectChildrenList<AssertionIDReference>assertionIDReferencesThe List of AssertionIDReferences.private QueryquerySaves the query (one of Query, SubjectQuery, AuthenticationQuery, AttributeQuery, AuthorizationDecisionQuery.-
Fields inherited from interface org.opensaml.saml.saml1.core.Request
DEFAULT_ELEMENT_LOCAL_NAME, DEFAULT_ELEMENT_NAME, TYPE_LOCAL_NAME, TYPE_NAME
-
Fields inherited from interface org.opensaml.saml.saml1.core.RequestAbstractType
ID_ATTRIB_NAME, ISSUEINSTANT_ATTRIB_NAME, ISSUEINSTANT_ATTRIB_QNAME, MAJORVERSION_ATTRIB_NAME, MINORVERSION_ATTRIB_NAME
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRequestImpl(String namespaceURI, String elementLocalName, String namespacePrefix)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AssertionArtifact>getAssertionArtifacts()Get the list of artifacts.List<AssertionIDReference>getAssertionIDReferences()Get the list of AssertionIDReferences.AttributeQuerygetAttributeQuery()Get the request AttributeQuery.AuthenticationQuerygetAuthenticationQuery()Get the request AuthenticationQuery.AuthorizationDecisionQuerygetAuthorizationDecisionQuery()Get the request AuthorizationDecisionQuery.List<XMLObject>getOrderedChildren()Gets an unmodifiable list of child elements in the order that they will appear in the DOM.QuerygetQuery()Get the request Query, SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery.SubjectQuerygetSubjectQuery()Get the request SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery.voidsetQuery(Query q)Set the request query (Query, SubjectQuery, AuthenticationQuery, AttributeQuery, AuthorizationDecisioonQuery).-
Methods inherited from class org.opensaml.saml.saml1.core.impl.RequestAbstractTypeImpl
getID, getIssueInstant, getRespondWiths, getSignatureReferenceID, getVersion, setID, setIssueInstant, 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.RequestAbstractType
getID, getIssueInstant, getRespondWiths, getVersion, setID, setIssueInstant, 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
-
query
private Query query
Saves the query (one of Query, SubjectQuery, AuthenticationQuery, AttributeQuery, AuthorizationDecisionQuery.
-
assertionIDReferences
private final XMLObjectChildrenList<AssertionIDReference> assertionIDReferences
The List of AssertionIDReferences.
-
assertionArtifacts
private final XMLObjectChildrenList<AssertionArtifact> assertionArtifacts
The List of AssertionArtifacts.
-
-
Constructor Detail
-
RequestImpl
protected RequestImpl(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
-
getQuery
public Query getQuery()
Get the request Query, SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery.
-
getSubjectQuery
public SubjectQuery getSubjectQuery()
Get the request SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery.- Specified by:
getSubjectQueryin interfaceRequest- Returns:
- request SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery
-
getAttributeQuery
public AttributeQuery getAttributeQuery()
Get the request AttributeQuery.- Specified by:
getAttributeQueryin interfaceRequest- Returns:
- request AttributeQuery
-
getAuthenticationQuery
public AuthenticationQuery getAuthenticationQuery()
Get the request AuthenticationQuery.- Specified by:
getAuthenticationQueryin interfaceRequest- Returns:
- request AuthenticationQuery
-
getAuthorizationDecisionQuery
public AuthorizationDecisionQuery getAuthorizationDecisionQuery()
Get the request AuthorizationDecisionQuery.- Specified by:
getAuthorizationDecisionQueryin interfaceRequest- Returns:
- request AuthorizationDecisionQuery
-
setQuery
public void setQuery(Query q)
Set the request query (Query, SubjectQuery, AuthenticationQuery, AttributeQuery, AuthorizationDecisioonQuery).
-
getAssertionIDReferences
public List<AssertionIDReference> getAssertionIDReferences()
Get the list of AssertionIDReferences.- Specified by:
getAssertionIDReferencesin interfaceRequest- Returns:
- list of AssertionIDReferences
-
getAssertionArtifacts
public List<AssertionArtifact> getAssertionArtifacts()
Get the list of artifacts.- Specified by:
getAssertionArtifactsin interfaceRequest- Returns:
- list of artifacts
-
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 classRequestAbstractTypeImpl- Returns:
- ordered list of child elements
-
-