Interface XmlSignature2Message.Input
- Enclosing interface:
XmlSignature2Message
public static interface XmlSignature2Message.Input
-
Method Summary
Modifier and TypeMethodDescriptionMessage body containing the XML signature as DOM.Returns the objects.Output node search value for determining the node from the XML signature document which shall be set to the output message body.Search type.The character encoding of the resulting XML document.Returns the references.Indicator whether the XML signature elements should be removed from the document set to the output message.Indicator whether XML declaration should be omitted.
-
Method Details
-
getReferences
Returns the references. If there were several signatures then all references of all signatures are returned.- Returns:
- list of references, cannot be
null
-
getObjects
Returns the objects. If there were several signatures in the XML document then all objects of all signatures are returned.- Returns:
- objects, cannot be
null
-
getMessageBodyDocument
Document getMessageBodyDocument()Message body containing the XML signature as DOM. -
omitXmlDeclaration
Boolean omitXmlDeclaration()Indicator whether XML declaration should be omitted. Configured in the endpoint URI.- Returns:
Boolean.TRUE
if the XML declaration shall be omitted in the output document.
-
getOutputNodeSearch
Object getOutputNodeSearch()Output node search value for determining the node from the XML signature document which shall be set to the output message body. -
getOutputNodeSearchType
String getOutputNodeSearchType()Search type. Which determines the class and meaning ofgetOutputNodeSearch()
. -
getRemoveSignatureElements
Boolean getRemoveSignatureElements()Indicator whether the XML signature elements should be removed from the document set to the output message. -
getOutputXmlEncoding
String getOutputXmlEncoding()The character encoding of the resulting XML document. Can benull
. Ifnull
then the encoding of the original XML document is used.
-