Package org.opensaml.saml.saml1.core
Interface StatusCode
-
- All Superinterfaces:
SAMLObject,XMLObject
public interface StatusCode extends SAMLObject
This interface defines how the object representing a SAML 1StatusCodeelement behaves.
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_ELEMENT_LOCAL_NAMEElement name, no namespace.static QNameDEFAULT_ELEMENT_NAMEDefault element name.static QNameREQUEST_DENIEDRequestDenied status value.static QNameREQUEST_VERSION_DEPRECATEDRequestVersionDepricated status value.static QNameREQUEST_VERSION_TOO_HIGHRequestVersionTooHigh status value.static QNameREQUEST_VERSION_TOO_LOWRequestVersionTooLow status value.static QNameREQUESTERRequester status value.static QNameRESOURCE_NOT_RECOGNIZEDResourceNotRecognized status value.static QNameRESPONDERResponder status value.static QNameSUCCESSSuccess status value.static QNameTOO_MANY_RESPONSESTooManyResponses status value.static StringTYPE_LOCAL_NAMELocal name of the XSI type.static QNameTYPE_NAMEQName of the XSI type.static StringVALUE_ATTRIB_NAMEName for the attribute which defines the Value.static QNameVERSION_MISMATCHVersionMismatch status value.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatusCodegetStatusCode()Gets the second level status code.QNamegetValue()Gets the value of the status code.voidsetStatusCode(StatusCode statusCode)Sets the second level status code.voidsetValue(QName value)Sets the value of the status code.-
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.
-
SUCCESS
static final QName SUCCESS
Success status value.
-
VERSION_MISMATCH
static final QName VERSION_MISMATCH
VersionMismatch status value.
-
REQUESTER
static final QName REQUESTER
Requester status value.
-
RESPONDER
static final QName RESPONDER
Responder status value.
-
REQUEST_VERSION_TOO_HIGH
static final QName REQUEST_VERSION_TOO_HIGH
RequestVersionTooHigh status value.
-
REQUEST_VERSION_TOO_LOW
static final QName REQUEST_VERSION_TOO_LOW
RequestVersionTooLow status value.
-
REQUEST_VERSION_DEPRECATED
static final QName REQUEST_VERSION_DEPRECATED
RequestVersionDepricated status value.
-
TOO_MANY_RESPONSES
static final QName TOO_MANY_RESPONSES
TooManyResponses status value.
-
REQUEST_DENIED
static final QName REQUEST_DENIED
RequestDenied status value.
-
RESOURCE_NOT_RECOGNIZED
static final QName RESOURCE_NOT_RECOGNIZED
ResourceNotRecognized status value.
-
VALUE_ATTRIB_NAME
static final String VALUE_ATTRIB_NAME
Name for the attribute which defines the Value.- See Also:
- Constant Field Values
-
-
Method Detail
-
getValue
QName getValue()
Gets the value of the status code.- Returns:
- value of the status code
-
setValue
void setValue(QName value)
Sets the value of the status code.- Parameters:
value- value of the status code
-
getStatusCode
StatusCode getStatusCode()
Gets the second level status code.- Returns:
- second level status code
-
setStatusCode
void setStatusCode(StatusCode statusCode)
Sets the second level status code.- Parameters:
statusCode- second level status code
-
-