diff options
| author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-02-06 13:40:54 +0100 | 
|---|---|---|
| committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2020-02-06 13:40:54 +0100 | 
| commit | 98a83cbb3f5eca50388f3d5f64fe1d760bc199d7 (patch) | |
| tree | 7e953bbd8210335ac8665ed4bb6cbd673e6b446e /eaaf_core | |
| parent | b1e267a57f896268239df835b45742c752310ed5 (diff) | |
| download | EAAF-Components-98a83cbb3f5eca50388f3d5f64fe1d760bc199d7.tar.gz EAAF-Components-98a83cbb3f5eca50388f3d5f64fe1d760bc199d7.tar.bz2 EAAF-Components-98a83cbb3f5eca50388f3d5f64fe1d760bc199d7.zip | |
Refactor SamlVerificationEngine
add some more jUnit tests
Diffstat (limited to 'eaaf_core')
| -rw-r--r-- | eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/conf/AbstractSpringBootConfigurationImpl.java | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/conf/AbstractSpringBootConfigurationImpl.java b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/conf/AbstractSpringBootConfigurationImpl.java index 1c7806ef..5dcbcb7e 100644 --- a/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/conf/AbstractSpringBootConfigurationImpl.java +++ b/eaaf_core/src/main/java/at/gv/egiz/eaaf/core/impl/idp/conf/AbstractSpringBootConfigurationImpl.java @@ -28,6 +28,10 @@ import java.util.Map.Entry;  import javax.annotation.PostConstruct; +import at.gv.egiz.eaaf.core.api.idp.IConfigurationWithSP; +import at.gv.egiz.eaaf.core.exceptions.EaafConfigurationException; +import at.gv.egiz.eaaf.core.impl.utils.KeyValueUtils; +  import org.apache.commons.lang3.StringUtils;  import org.slf4j.Logger;  import org.slf4j.LoggerFactory; @@ -38,10 +42,6 @@ import org.springframework.core.env.EnumerablePropertySource;  import org.springframework.core.env.Environment;  import org.springframework.core.env.PropertySource; -import at.gv.egiz.eaaf.core.api.idp.IConfigurationWithSP; -import at.gv.egiz.eaaf.core.exceptions.EaafConfigurationException; -import at.gv.egiz.eaaf.core.impl.utils.KeyValueUtils; -  public abstract class AbstractSpringBootConfigurationImpl implements IConfigurationWithSP {    private static final Logger log = LoggerFactory.getLogger(AbstractSpringBootConfigurationImpl.class); @@ -190,7 +190,7 @@ public abstract class AbstractSpringBootConfigurationImpl implements IConfigurat      // note: Most descendants of PropertySource are EnumerablePropertySource. There      // are some      // few others like JndiPropertySource or StubPropertySource -    log.debug("Given PropertySource is instanceof " + apropSource.getClass().getName() +    log.trace("Given PropertySource is instanceof " + apropSource.getClass().getName()          + " and cannot be iterated");      return result; | 
