All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.safelayer.rap.api.PkiConnector Maven / Gradle / Ivy

Go to download

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;
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy