Interface SignaturePolicyService
public interface SignaturePolicyService
Interface for the signature policy service.
- Author:
- Frank Cornelis
-
Method Summary
Modifier and TypeMethodDescriptionGives back the short description of the signature policy ornull
if a description is not available.byte[]
Gives back the signature policy document.Gives back the download URL where the signature policy document can be found.Gives back the signature policy identifier URI.
-
Method Details
-
getSignaturePolicyIdentifier
String getSignaturePolicyIdentifier()Gives back the signature policy identifier URI.- Returns:
- the signature policy identifier URI.
-
getSignaturePolicyDescription
String getSignaturePolicyDescription()Gives back the short description of the signature policy ornull
if a description is not available.- Returns:
- the description, or
null
.
-
getSignaturePolicyDownloadUrl
String getSignaturePolicyDownloadUrl()Gives back the download URL where the signature policy document can be found. Can benull
in case such a download location does not exist.- Returns:
- the download URL, or
null
.
-
getSignaturePolicyDocument
byte[] getSignaturePolicyDocument()Gives back the signature policy document.- Returns:
- the bytes of the signature policy document.
-