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

io.quarkus.test.security.certificate.ClientCertificateImpl Maven / Gradle / Ivy

package io.quarkus.test.security.certificate;

record ClientCertificateImpl(String commonName, String keystorePath, String truststorePath, String keyPath,
        String certPath) implements PemClientCertificate {

    ClientCertificateImpl(String commonName, String keystorePath, String truststorePath) {
        this(commonName, keystorePath, truststorePath, null, null);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy