Package org.opensaml.saml.saml1.core
Interface Request
-
- All Superinterfaces:
RequestAbstractType,SAMLObject,SignableSAMLObject,SignableXMLObject,XMLObject
public interface Request extends RequestAbstractType
This interface defines how the SAML1Requestobjects behave.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEElement name, no namespace.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static StringTYPE_LOCAL_NAMELocal name of the XSI type.static QNameTYPE_NAMEQName of the XSI type.-
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
-
-
Method Summary
All Methods Instance Methods Abstract 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.QuerygetQuery()Get the request Query, SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery.SubjectQuerygetSubjectQuery()Get the request SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery.voidsetQuery(Query query)Set the request query (Query, SubjectQuery, AuthenticationQuery, AttributeQuery, AuthorizationDecisioonQuery).-
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, getOrderedChildren, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
-
-
-
-
Field Detail
-
DEFAULT_ELEMENT_LOCAL_NAME
static final String DEFAULT_ELEMENT_LOCAL_NAME
Element name, no namespace.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
static final QName DEFAULT_ELEMENT_NAME
Default element name.
-
TYPE_LOCAL_NAME
static final String TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
static final QName TYPE_NAME
QName of the XSI type.
-
-
Method Detail
-
getQuery
Query getQuery()
Get the request Query, SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery.- Returns:
- request Query, SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery
-
getSubjectQuery
SubjectQuery getSubjectQuery()
Get the request SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery.- Returns:
- request SubjectQuery, AuthenticationQuery, AttributeQuery, or AuthorizationDecisionQuery
-
getAuthenticationQuery
AuthenticationQuery getAuthenticationQuery()
Get the request AuthenticationQuery.- Returns:
- request AuthenticationQuery
-
getAttributeQuery
AttributeQuery getAttributeQuery()
Get the request AttributeQuery.- Returns:
- request AttributeQuery
-
getAuthorizationDecisionQuery
AuthorizationDecisionQuery getAuthorizationDecisionQuery()
Get the request AuthorizationDecisionQuery.- Returns:
- request AuthorizationDecisionQuery
-
setQuery
void setQuery(Query query)
Set the request query (Query, SubjectQuery, AuthenticationQuery, AttributeQuery, AuthorizationDecisioonQuery).- Parameters:
query- Query, SubjectQuery, AuthenticationQuery, AttributeQuery, AuthorizationDecisioonQuery
-
getAssertionIDReferences
List<AssertionIDReference> getAssertionIDReferences()
Get the list of AssertionIDReferences.- Returns:
- list of AssertionIDReferences
-
getAssertionArtifacts
List<AssertionArtifact> getAssertionArtifacts()
Get the list of artifacts.- Returns:
- list of artifacts
-
-