
com.authlete.jaxrs.HeaderClientCertificateXSslExtractor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authlete-java-jaxrs Show documentation
Show all versions of authlete-java-jaxrs Show documentation
Authlete library for JAX-RS (Java)
/*
* Copyright (C) 2021 Authlete, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the
* License.
*/
package com.authlete.jaxrs;
import java.util.Arrays;
import java.util.List;
/**
* A client certificate extractor for the {@code X-Ssl-Cert} and
* {@code X-Ssl-Cert-Chain-*} headers.
*
* @since 2.34
*
* @see Apache Module mod_ssl
*/
public class HeaderClientCertificateXSslExtractor extends HeaderClientCertificateExtractor
{
/**
* Headers to check for certificate path with proxy-forwarded certificate
* information; the first entry is the client's certificate itself
*/
private List clientCertificateChainHeaders = Arrays.asList(
"X-Ssl-Cert", // the client's certificate
"X-Ssl-Cert-Chain-0",
"X-Ssl-Cert-Chain-1",
"X-Ssl-Cert-Chain-2",
"X-Ssl-Cert-Chain-3",
"X-Ssl-Cert-Chain-4"
// the intermediate certificate path, not including the client's
// certificate or root
);
@Override
public List getClientCertificateChainHeaders()
{
return clientCertificateChainHeaders;
}
@Override
public HeaderClientCertificateExtractor setClientCertificateChainHeaders(
List clientCertificateChainHeaders)
{
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy