com.safelayer.rap.api.PkiConnector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pki-connector-restapi Show documentation
Show all versions of pki-connector-restapi Show documentation
The PKI Connector RESTAPI is a library that helps developing new PKI Connectors for TrustedX
The newest version!
package com.safelayer.rap.api;
import com.safelayer.rap.api.model.issuance.*;
import com.safelayer.rap.api.model.revocation.RevocationPutCertificatesRequest;
/**
* Interface that defines a manager to communicate with any PKI entity able to generate, publish and
* revoke certificates.
*/
public interface PkiConnector {
public IssuanceResponse putInformationRequest(IssuancePutInformationRequest request) throws Exception;
public IssuanceResponse putKeysRequest(IssuancePutKeysRequest request) throws Exception;
public IssuanceResponse putPopRequest(IssuancePutPopRequest request) throws Exception;
public IssuanceResponse getCertificatesRequest(GetCertificatesRequest request) throws Exception;
public void publishRequest(CertificatesPublishRequest request) throws Exception;
public void revocationRequest(RevocationPutCertificatesRequest request) throws Exception;
}