Interface XmlSignature2Message.Input
-
- Enclosing interface:
- XmlSignature2Message
public static interface XmlSignature2Message.Input
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Document
getMessageBodyDocument()
Message body containing the XML signature as DOM.List<XMLObject>
getObjects()
Returns the objects.Object
getOutputNodeSearch()
Output node search value for determining the node from the XML signature document which shall be set to the output message body.String
getOutputNodeSearchType()
Search type.String
getOutputXmlEncoding()
The character encoding of the resulting XML document.List<Reference>
getReferences()
Returns the references.Boolean
getRemoveSignatureElements()
Indicator whether the XML signature elements should be removed from the document set to the output message.Boolean
omitXmlDeclaration()
Indicator whether XML declaration should be omitted.
-
-
-
Method Detail
-
getReferences
List<Reference> 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
List<XMLObject> 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.
-
-