Package org.opensaml.saml.saml1.core
Interface Status
-
- All Superinterfaces:
SAMLObject,XMLObject
public interface Status extends SAMLObject
This interface defines how the object representing a SAML 1Statuselement behaves.
-
-
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.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatusCodegetStatusCode()Get the object representing theStatusCode(element).StatusDetailgetStatusDetail()Get the object representing theStatusDetail(element).StatusMessagegetStatusMessage()Get the object representing theStatusMessage(element).voidsetStatusCode(StatusCode statusCode)Set the object representing theStatusCode(element).voidsetStatusDetail(StatusDetail statusDetail)Set the object representing theStatusDetail(element).voidsetStatusMessage(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 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
-
getStatusMessage
StatusMessage getStatusMessage()
Get the object representing theStatusMessage(element).- Returns:
- object representing the
StatusMessage(element)
-
setStatusMessage
void setStatusMessage(StatusMessage statusMessage)
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
void setStatusCode(StatusCode statusCode)
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
void setStatusDetail(StatusDetail statusDetail)
Set the object representing theStatusDetail(element).- Parameters:
statusDetail- object representing theStatusDetail(element)
-
-