
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