Package com.authlete.jaxrs
Class HeaderClientCertificateXSslExtractor
- java.lang.Object
-
- com.authlete.jaxrs.HeaderClientCertificateExtractor
-
- com.authlete.jaxrs.HeaderClientCertificateXSslExtractor
-
- All Implemented Interfaces:
ClientCertificateExtractor
public class HeaderClientCertificateXSslExtractor extends HeaderClientCertificateExtractor
A client certificate extractor for theX-Ssl-CertandX-Ssl-Cert-Chain-*headers.- Since:
- 2.34
- See Also:
- Apache Module mod_ssl
-
-
Constructor Summary
Constructors Constructor Description HeaderClientCertificateXSslExtractor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getClientCertificateChainHeaders()Get the headers that will be checked for the client certificate chain.HeaderClientCertificateExtractorsetClientCertificateChainHeaders(List<String> clientCertificateChainHeaders)Set the headers that will be checked for the client certificate chain.-
Methods inherited from class com.authlete.jaxrs.HeaderClientCertificateExtractor
extractClientCertificateChain
-
-
-
-
Method Detail
-
getClientCertificateChainHeaders
public List<String> getClientCertificateChainHeaders()
Description copied from class:HeaderClientCertificateExtractorGet the headers that will be checked for the client certificate chain. The first element in the list is header for the client's own certificate. Each additional header in the list will be checked and added to the resulting output.- Overrides:
getClientCertificateChainHeadersin classHeaderClientCertificateExtractor
-
setClientCertificateChainHeaders
public HeaderClientCertificateExtractor setClientCertificateChainHeaders(List<String> clientCertificateChainHeaders)
Description copied from class:HeaderClientCertificateExtractorSet the headers that will be checked for the client certificate chain. The first element in the list is header for the client's own certificate. Each additional header in the list will be checked and added to the resulting output.- Overrides:
setClientCertificateChainHeadersin classHeaderClientCertificateExtractor
-
-