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