From 1df3e8ea29eb23d90d7953f74bbea41a7d9a05f9 Mon Sep 17 00:00:00 2001 From: Tobias Kellner Date: Tue, 27 Oct 2015 16:13:53 +0100 Subject: Change default revocation service order for PKI module --- .../src/main/java/at/gv/egiz/bku/spring/PKIProfileFactoryBean.java | 4 ++-- bkucommon/src/site/apt/configuration.apt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/spring/PKIProfileFactoryBean.java b/bkucommon/src/main/java/at/gv/egiz/bku/spring/PKIProfileFactoryBean.java index e56bb861..2debb2fc 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/spring/PKIProfileFactoryBean.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/spring/PKIProfileFactoryBean.java @@ -241,9 +241,9 @@ public class PKIProfileFactoryBean implements FactoryBean, ResourceLoaderAware { return order.toArray(new String[order.size()]); } } - log.info("configure default revocation service type order: [OCSP, CRL]"); + log.info("configure default revocation service type order: [CRL, OCSP]"); return new String[] - { RevocationSourceTypes.OCSP, RevocationSourceTypes.CRL }; + { RevocationSourceTypes.CRL, RevocationSourceTypes.OCSP }; } @Override diff --git a/bkucommon/src/site/apt/configuration.apt b/bkucommon/src/site/apt/configuration.apt index c288c98e..ec6b7cd0 100644 --- a/bkucommon/src/site/apt/configuration.apt +++ b/bkucommon/src/site/apt/configuration.apt @@ -70,9 +70,9 @@ MOCCA Configuration [<<>>] Options: <<>> (default) or <<>> - [<<>>] Comma-separated (ordered) list of revocation services to be used, e.g. "<<>>". Any revocation service not contained in the list will be disabled. + [<<>>] Comma-separated (ordered) list of revocation services to be used, e.g. "<<>>". Any revocation service not contained in the list will be disabled. - Default: <<>> + Default: <<>> [] -- cgit v1.2.3