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

io.quarkus.security.identity.request.CertificateAuthenticationRequest Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package io.quarkus.security.identity.request;

import io.quarkus.security.credential.CertificateCredential;

/**
 * A {@link AuthenticationRequest} to authenticate from a {@link CertificateCredential}, such as when authenticating clients through TLS
 */
public class CertificateAuthenticationRequest extends BaseAuthenticationRequest implements AuthenticationRequest {

    private final CertificateCredential certificate;

    public CertificateAuthenticationRequest(CertificateCredential certificate) {
        this.certificate = certificate;
    }

    public CertificateCredential getCertificate() {
        return certificate;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy