view gnv/src/main/java/de/intevation/gnv/propertiesreader/PropertiesReaderFactory.java @ 7:fe6a64545552

Support for creating an Artifact integrated gnv/trunk@83 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 14 Sep 2009 13:46:25 +0000
parents d7b4a77ba892
children ad381cc47217
line wrap: on
line source
/**
 *
 */
package de.intevation.gnv.propertiesreader;

import java.util.Map;

import javax.servlet.ServletConfig;

import org.apache.log4j.Logger;

/**
 * @author Tim Englich <tim.englich@intevation.de>
 *
 */
public class PropertiesReaderFactory {


    
    /**
     * the logger, used to log exceptions and additonaly information
     */
    private static Logger log = Logger.getLogger(PropertiesReaderFactory.class);

    
    /**
     * The singleton Instance of this Factory.
     */
    private static PropertiesReaderFactory instance = null;

    /**
     * The ConnectionPool providing the Connections to the DatabaseBackends
     */
    private PropertiesReader propertiesReader = null;
    /**
     * Constructor
     */
    private PropertiesReaderFactory() {
        super();
    }

    /**
     * This Method provides an singleton Instance of this Class.
     * @return an singleton Instance of this Class
     */
    public static PropertiesReaderFactory getInstance(){
        if (instance == null){
            instance = new PropertiesReaderFactory();
        }
        return instance;
    }
    
    
    /**
     * Getting the ConnectionPool
     * @return the ConnectionPool
     */
    public PropertiesReader getPropertiesReader(){
        return this.propertiesReader;
    }
    
    /**
     * Getting the ConnectionPool
     * @param config The Config that should be read
     */
    public void initPropertiesReader(Object config){
        if (config instanceof ServletConfig){
            this.propertiesReader = new ServletPropertiesReader((ServletConfig)config);
        }else if (config instanceof Map){
            this.propertiesReader = new MapPropertiesReader((Map<String, String>)config);
        }else{
            log.error("No PropertiesReader for Instance "+ config.getClass().getName());
        }
        
    }

}

http://dive4elements.wald.intevation.org