PolicyCertificatesModificationResult Interface

public interface PolicyCertificatesModificationResult

Respects the result of a call to addPolicyManagementCertificate(PolicyManagementCertificateOptions options) or deletePolicyManagementCertificate(PolicyManagementCertificateOptions options). It contains the state of the certificate identified by getCertificateThumbprint() - whether the Certificate Modification API resulted in the certificate being removed or not. If the certificate was removed, the state will be IS_ABSENT, if it is present after the API call, the state will be IS_PRESENT.

Method Summary

Modifier and Type Method and Description
abstract CertificateModification getCertificateResolution()

Returns the CertificateModification property: The result of the operation.

abstract String getCertificateThumbprint()

Returns the certificateThumbprint for the certificate which was modified.

Method Details

getCertificateResolution

public abstract CertificateModification getCertificateResolution()

Returns the CertificateModification property: The result of the operation.

Returns:

the certificateResolution value.

getCertificateThumbprint

public abstract String getCertificateThumbprint()

Returns the certificateThumbprint for the certificate which was modified. The "thumbprint" of a certificate is the upper case hex encoded SHA1 Hash of the ASN.1 DER encoded binary representation certificate.

Returns:

the certificateThumbprint value.

Applies to