All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.litsec.opensaml.config.OpenSAMLInitializer Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
/*
 * Copyright 2016-2019 Litsec AB
 *
 * 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 se.litsec.opensaml.config;

import java.util.HashMap;
import java.util.Map;

import org.opensaml.core.config.ConfigurationService;
import org.opensaml.core.config.InitializationService;
import org.opensaml.core.xml.config.XMLObjectProviderRegistry;
import org.opensaml.core.xml.config.XMLObjectProviderRegistrySupport;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import net.shibboleth.utilities.java.support.component.ComponentInitializationException;
import net.shibboleth.utilities.java.support.xml.BasicParserPool;
import net.shibboleth.utilities.java.support.xml.ParserPool;

/**
 * Singleton class for initialization and configuration of the OpenSAML library.
 * 

* This implementation has been deprecated. Instead use {@link se.swedenconnect.opensaml.OpenSAMLInitializer}. *

* * @author Martin Lindström ([email protected]) */ @Deprecated public class OpenSAMLInitializer { /** Logger instance. */ private Logger logger = LoggerFactory.getLogger(OpenSAMLInitializer.class); /** Whether this component has been initialized. */ private boolean initialized; /** The initializer may be assigned a configured parser pool. */ private ParserPool parserPool; /** Builder features for the default parser pool. */ private static final Map builderFeatures; static { builderFeatures = new HashMap<>(); builderFeatures.put("http://apache.org/xml/features/disallow-doctype-decl", Boolean.TRUE); builderFeatures.put("http://apache.org/xml/features/validation/schema/normalized-value", Boolean.FALSE); builderFeatures.put("http://javax.xml.XMLConstants/feature/secure-processing", Boolean.TRUE); } /** The singleton instance. */ private static OpenSAMLInitializer INSTANCE = new OpenSAMLInitializer(); /** * Returns the initializer instance. * * @return the initializer instance */ public static OpenSAMLInitializer getInstance() { return INSTANCE; } /** * Predicate that tells if the OpenSAML library already has been initialized. * * @return if the library has been initialized {@code true} is returned, otherwise {@code false} */ public boolean isInitialized() { return this.initialized; } /** * Initializes the OpenSAML library. * * @throws Exception * thrown if there is a problem initializing the library */ public final synchronized void initialize() throws Exception { if (this.initialized) { logger.info("OpenSAML 3.X library has already been initialized"); return; } logger.debug("Initializing OpenSAML 3.X library..."); InitializationService.initialize(); XMLObjectProviderRegistry registry; synchronized (ConfigurationService.class) { registry = ConfigurationService.get(XMLObjectProviderRegistry.class); if (registry == null) { logger.debug("XMLObjectProviderRegistry did not exist in ConfigurationService, will be created"); registry = new XMLObjectProviderRegistry(); ConfigurationService.register(XMLObjectProviderRegistry.class, registry); } } if (this.parserPool != null) { logger.debug("Installing configured parser pool to XMLObjectProviderRegistry..."); registry.setParserPool(this.parserPool); } else if (registry.getParserPool() == null) { logger.debug("Installing default parser pool to XMLObjectProviderRegistry..."); registry.setParserPool(createDefaultParserPool()); } logger.info("OpenSAML library 3.X successfully initialized"); this.initialized = true; } /** * Set the global ParserPool to configure. * * @param parserPool * the parserPool to assign */ public void setParserPool(ParserPool parserPool) { this.parserPool = parserPool; if (this.isInitialized()) { logger.info("OpenSAML 3.X library has already been initialized - setting supplied parser pool to registry"); XMLObjectProviderRegistrySupport.setParserPool(parserPool); } } /** * Creates a basic parser pool with default settings. * * @return the default parser pool * @throws ComponentInitializationException * for init errors */ public static ParserPool createDefaultParserPool() throws ComponentInitializationException { BasicParserPool basicParserPool = new BasicParserPool(); basicParserPool.setMaxPoolSize(100); basicParserPool.setCoalescing(true); basicParserPool.setIgnoreComments(true); basicParserPool.setIgnoreElementContentWhitespace(true); basicParserPool.setNamespaceAware(true); basicParserPool.setBuilderFeatures(builderFeatures); basicParserPool.initialize(); return basicParserPool; } // Hidden constructor private OpenSAMLInitializer() { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy