Interface XmlSignatureChecker.Input
- Enclosing interface:
- XmlSignatureChecker
public static interface XmlSignatureChecker.Input
-
Method Summary
Modifier and TypeMethodDescriptionint
Returns the current count of XML signatures starting from 1.Current signature element.Key info.org.apache.camel.Message
Message.Message body containing the XML signature as DOM.XML objects list.Signature value instance.Signed info instance.int
Returns the total count of XML signatures contained in the document.boolean
Returns true if a XML schema validation was executed during the parsing of the XML document.
-
Method Details
-
getSignedInfo
SignedInfo getSignedInfo()Signed info instance. -
getSignatureValue
XMLSignature.SignatureValue getSignatureValue()Signature value instance. -
getObjects
XML objects list. -
getKeyInfo
KeyInfo getKeyInfo()Key info. -
getMessageBodyDocument
Document getMessageBodyDocument()Message body containing the XML signature as DOM. -
getMessage
org.apache.camel.Message getMessage()Message. -
isXmlSchemaValidationExecuted
boolean isXmlSchemaValidationExecuted()Returns true if a XML schema validation was executed during the parsing of the XML document. -
getTotalCountOfSignatures
int getTotalCountOfSignatures()Returns the total count of XML signatures contained in the document. -
getCurrentCountOfSignatures
int getCurrentCountOfSignatures()Returns the current count of XML signatures starting from 1. -
getCurrentSignatureElement
Element getCurrentSignatureElement()Current signature element.
-