public class CertificateExplorer
extends java.lang.Object
| Constructor and Description |
|---|
CertificateExplorer(RestPkiClient client) |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getCertificate() |
java.lang.String |
getSecurityContextId() |
boolean |
isValidate() |
CertificateExplorerResult |
open() |
void |
setCertificate(java.lang.String certificateBase64)
Deprecated.
Alias for the setSignerCertificateBase64 method.
|
void |
setCertificateBase64(java.lang.String certificateBase64)
Sets the signer's certificate, encoded in Base64.
|
void |
setCertificateRaw(byte[] certificateRaw)
Sets the signer's certificate.
|
void |
setSecurityContext(SecurityContext securityContext) |
void |
setSecurityContextId(java.lang.String securityContextId) |
void |
setValidate(boolean validate) |
public CertificateExplorer(RestPkiClient client)
public byte[] getCertificate()
public void setCertificateRaw(byte[] certificateRaw)
certificateRaw - The signer's certificate. If you're using the Web PKI component on the
client-side, this is the format given by the component.public void setCertificateBase64(java.lang.String certificateBase64)
certificateBase64 - The signer's certificate, encoded in Base64. If you're using the
Web PKI component on the client-side, this is the format given by
the component.public void setCertificate(java.lang.String certificateBase64)
certificateBase64 - The signer's certificate, encoded in Base64. If you're using the
Web PKI component on the client-side, this is the format given by
the component.public java.lang.String getSecurityContextId()
public void setSecurityContext(SecurityContext securityContext)
public void setSecurityContextId(java.lang.String securityContextId)
public boolean isValidate()
public void setValidate(boolean validate)
public CertificateExplorerResult open() throws RestException
RestException