com.helger.phase4.profile.peppol.PeppolCRLDownloader Maven / Gradle / Ivy
/*
* Copyright (C) 2019-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* 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.helger.phase4.profile.peppol;
import javax.annotation.Nonnull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.helger.commons.ValueEnforcer;
import com.helger.httpclient.HttpClientFactory;
import com.helger.httpclient.HttpClientSettings;
import com.helger.peppol.utils.CRLCache;
import com.helger.peppol.utils.CRLDownloader;
import com.helger.peppol.utils.CertificateRevocationChecker;
/**
* The Peppol specific CRL downloader using the {@link HttpClientUrlDownloader}
* internally.
*
* @author Philip Helger
* @since 2.7.4
*/
public class PeppolCRLDownloader extends CRLDownloader
{
private static final Logger LOGGER = LoggerFactory.getLogger (PeppolCRLDownloader.class);
/**
* Default constructor using {@link Phase4PeppolHttpClientSettings}.
*/
public PeppolCRLDownloader ()
{
this (new Phase4PeppolHttpClientSettings ());
}
/**
* Constructor using specific settings
*
* @param aHCS
* The {@link HttpClientSettings} to use. May not be null
.
*/
public PeppolCRLDownloader (@Nonnull final HttpClientSettings aHCS)
{
super (new HttpClientUrlDownloader (aHCS));
}
/**
* Constructor using specific settings
*
* @param aHCF
* The {@link HttpClientFactory} to use. May not be null
.
*/
public PeppolCRLDownloader (@Nonnull final HttpClientFactory aHCF)
{
super (new HttpClientUrlDownloader (aHCF));
}
/**
* Install a global CRLCache using this CRL downloader and the provided
* {@link HttpClientSettings}.
*
* @param aHCS
* The {@link HttpClientSettings} to be used. May not be
* null
.
*/
public static void setAsDefaultCRLCache (@Nonnull final HttpClientSettings aHCS)
{
ValueEnforcer.notNull (aHCS, "HttpClientSettings");
LOGGER.info ("Installing the PeppolCRLDownloader as the default CRL cache using HttpClientSettings " + aHCS);
CertificateRevocationChecker.setDefaultCRLCache (new CRLCache (new PeppolCRLDownloader (aHCS),
CRLCache.DEFAULT_CACHING_DURATION));
}
}