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-Cert
andX-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.HeaderClientCertificateExtractor
setClientCertificateChainHeaders(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:HeaderClientCertificateExtractor
Get 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:
getClientCertificateChainHeaders
in classHeaderClientCertificateExtractor
-
setClientCertificateChainHeaders
public HeaderClientCertificateExtractor setClientCertificateChainHeaders(List<String> clientCertificateChainHeaders)
Description copied from class:HeaderClientCertificateExtractor
Set 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:
setClientCertificateChainHeaders
in classHeaderClientCertificateExtractor
-
-