Package org.opensaml.saml.saml1.core
Interface Status
- All Superinterfaces:
SAMLObject
,XMLObject
- All Known Implementing Classes:
StatusImpl
public interface Status extends SAMLObject
This interface defines how the object representing a SAML 1
Status
element behaves.-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_ELEMENT_LOCAL_NAME
Element name, no namespace.static QName
DEFAULT_ELEMENT_NAME
Default element name.static String
TYPE_LOCAL_NAME
Local name of the XSI type.static QName
TYPE_NAME
QName of the XSI type. -
Method Summary
Modifier and Type Method Description StatusCode
getStatusCode()
Get the object representing theStatusCode
(element).StatusDetail
getStatusDetail()
Get the object representing theStatusDetail
(element).StatusMessage
getStatusMessage()
Get the object representing theStatusMessage
(element).void
setStatusCode(StatusCode statusCode)
Set the object representing theStatusCode
(element).void
setStatusDetail(StatusDetail statusDetail)
Set the object representing theStatusDetail
(element).void
setStatusMessage(StatusMessage statusMessage)
Set the object representing theStatusMessage
(element).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 Details
-
DEFAULT_ELEMENT_LOCAL_NAME
Element name, no namespace.- See Also:
- Constant Field Values
-
DEFAULT_ELEMENT_NAME
Default element name. -
TYPE_LOCAL_NAME
Local name of the XSI type.- See Also:
- Constant Field Values
-
TYPE_NAME
QName of the XSI type.
-
-
Method Details
-
getStatusMessage
StatusMessage getStatusMessage()Get the object representing theStatusMessage
(element).- Returns:
- object representing the
StatusMessage
(element)
-
setStatusMessage
Set the object representing theStatusMessage
(element).- Parameters:
statusMessage
- object representing theStatusMessage
(element)
-
getStatusCode
StatusCode getStatusCode()Get the object representing theStatusCode
(element).- Returns:
- object representing the
StatusCode
(element)
-
setStatusCode
Set the object representing theStatusCode
(element).- Parameters:
statusCode
- object representing theStatusCode
(element)
-
getStatusDetail
StatusDetail getStatusDetail()Get the object representing theStatusDetail
(element).- Returns:
- object representing the
StatusDetail
(element)
-
setStatusDetail
Set the object representing theStatusDetail
(element).- Parameters:
statusDetail
- object representing theStatusDetail
(element)
-