org.apache.camel.component.xmlsecurity.api
Interface XmlSignature2Message.Input

Enclosing interface:
XmlSignature2Message

public static interface XmlSignature2Message.Input


Method Summary
 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.
 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.

Returns:
list of references, cannot be null

getObjects

List<XMLObject> getObjects()
Returns the objects.

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 of getOutputNodeSearch().


getRemoveSignatureElements

Boolean getRemoveSignatureElements()
Indicator whether the XML signature elements should be removed from the document set to the output message.



Apache Camel