Interface SignaturePrevalidator
-
public interface SignaturePrevalidatorAn interface for components which perform some pre-validation processing on an XMLSignatureinstance, for example to validate that the signature confirms to a particular profile of XML Signature.Note that implementations of this interface are NOT used to perform the actual cryptographic validation of the signature against key material. For that see
SignatureValidator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvalidate(Signature signature)Validate the signature according to the requirements represented by the validator.
-
-
-
Method Detail
-
validate
void validate(@Nonnull Signature signature) throws SignatureExceptionValidate the signature according to the requirements represented by the validator.- Parameters:
signature- the signature to evaluate- Throws:
SignatureException- if the signature does not meet the validator's requirements
-
-