Interface XmlSignatureChecker.Input
-
- Enclosing interface:
- XmlSignatureChecker
public static interface XmlSignatureChecker.Input
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCurrentCountOfSignatures()Returns the current count of XML signatures starting from 1.ElementgetCurrentSignatureElement()Current signature element.KeyInfogetKeyInfo()Key info.org.apache.camel.MessagegetMessage()Message.DocumentgetMessageBodyDocument()Message body containing the XML signature as DOM.List<? extends XMLObject>getObjects()XML objects list.XMLSignature.SignatureValuegetSignatureValue()Signature value instance.SignedInfogetSignedInfo()Signed info instance.intgetTotalCountOfSignatures()Returns the total count of XML signatures contained in the document.booleanisXmlSchemaValidationExecuted()Returns true if a XML schema validation was executed during the parsing of the XML document.
-
-
-
Method Detail
-
getSignedInfo
SignedInfo getSignedInfo()
Signed info instance.
-
getSignatureValue
XMLSignature.SignatureValue getSignatureValue()
Signature value instance.
-
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.
-
-