Interface XmlSignatureChecker.Input
-
- Enclosing interface:
- XmlSignatureChecker
public static interface XmlSignatureChecker.Input
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCurrentCountOfSignatures()
Returns the current count of XML signatures starting from 1.Element
getCurrentSignatureElement()
Current signature element.KeyInfo
getKeyInfo()
Key info.org.apache.camel.Message
getMessage()
Message.Document
getMessageBodyDocument()
Message body containing the XML signature as DOM.List<? extends XMLObject>
getObjects()
XML objects list.XMLSignature.SignatureValue
getSignatureValue()
Signature value instance.SignedInfo
getSignedInfo()
Signed info instance.int
getTotalCountOfSignatures()
Returns the total count of XML signatures contained in the document.boolean
isXmlSchemaValidationExecuted()
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.
-
-