Interface Message
- All Superinterfaces:
org.opensaml.core.xml.XMLObject
,org.opensaml.core.xml.schema.XSBase64Binary
- All Known Implementing Classes:
MessageImpl
public interface Message
extends org.opensaml.core.xml.schema.XSBase64Binary
XMLObject representing the
Message
element that is a child to SignMessage
.- Author:
- Martin Lindström (martin@idsec.se)
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Element local name.static final QName
Default element name.Fields inherited from interface org.opensaml.core.xml.schema.XSBase64Binary
TYPE_LOCAL_NAME, TYPE_NAME
-
Method Summary
Modifier and TypeMethodDescriptionReturns string content of theMessage
element, i.e., its Base64 decoded form.void
setContent
(String messageContent) Assigns theMessage
element by assigning the text that it should hold.Methods inherited from interface org.opensaml.core.xml.XMLObject
detach, ensureDOM, 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
Methods inherited from interface org.opensaml.core.xml.schema.XSBase64Binary
getValue, setValue
-
Field Details
-
DEFAULT_ELEMENT_LOCAL_NAME
Element local name.- See Also:
-
DEFAULT_ELEMENT_NAME
Default element name.
-
-
Method Details
-
getContent
String getContent()Returns string content of theMessage
element, i.e., its Base64 decoded form.- Returns:
- the message content
-
setContent
Assigns theMessage
element by assigning the text that it should hold. The method will Base64 encode the text.- Parameters:
messageContent
- content of the Message element
-