-
public interface VerificationResultAVerificationResultdescribes the outcome of a signature verification.- Since:
- 5.11
- See Also:
VerifySignatureCommand
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ThrowablegetException()If an error occurred during signature verification, this retrieves the exception.RevObjectgetObject()Retrieves the git object of which the signature was verified.GpgSignatureVerifier.SignatureVerificationgetVerification()Retrieves the signature verification result.
-
-
-
Method Detail
-
getException
Throwable getException()
If an error occurred during signature verification, this retrieves the exception.- Returns:
- the exception, or
nullif none occurred
-
getVerification
GpgSignatureVerifier.SignatureVerification getVerification()
Retrieves the signature verification result.- Returns:
- the result, or
nullif none was computed
-
getObject
RevObject getObject()
Retrieves the git object of which the signature was verified.- Returns:
- the git object
-
-