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

dev.galasa.framework.spi.ICertificateStoreService Maven / Gradle / Ivy

There is a newer version: 0.37.0
Show newest version
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.framework.spi;

import java.security.cert.X509Certificate;

import javax.validation.constraints.NotNull;

public interface ICertificateStoreService {
	
	/**
	 * 

* Retrieves the PEM certificate as a string. *

* * @param id * @return String certificate * @throws CertificateStoreException if no certificate found */ public X509Certificate getX509Certificate(@NotNull String id) throws CertificateStoreException; /** *

* Returns the default keystore. This will be populated by any certificates defined: * certificates.default.ids=XXXX,YYYY,etc * certificates.x509.XXXX.pem=... * certificates.x509.YYYY.der=... *

* @return * @throws CertificateStoreException */ public IKeyStore getDefaultKeystore() throws CertificateStoreException; /** * Returns a defined group of certificates inside a keystore. * * This will be populated by any certificates defined: *
	   certificates.<GroupId>.ids=XXXX,YYYY,etc
	   certificates.x509.XXXX.pem=...
	   certificates.x509.YYYY.der=...
	   
* * @param id * @return * @throws CertificateStoreException */ public IKeyStore getKeystore(@NotNull String id) throws CertificateStoreException; /** *

* Generate a Keystore populated with the list of certificates from the certificate * store using thier property ID *

* *

* If no id's are passed then an empty Keystore is generated and passed back, with * the assumption the tester has the desired certificates in a test resource. *

* @param certificateId * @return * @throws CertificateStoreException */ public IKeyStore getKeyStore(@NotNull String... certificateId) throws CertificateStoreException; /** *

* Generate a Keystore populated with the list of certificates from the certificate * store using thier property ID *

* *

* If no id's are passed then an empty Keystore is generated and passed back, with * the assumption the tester has the desired certificates in a test resource. *

* @param certificateId * @return * @throws CertificateStoreException */ public IKeyStore getDefaultKeyStoreWithExtraCertificates(@NotNull String... certificateId) throws CertificateStoreException; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy