view gnv/src/main/java/de/intevation/gnv/propertiesreader/PropertiesReaderFactory.java @ 38:fccf90761825

Format Code to max 80 Chars per Row better Formatter choosen gnv/trunk@174 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Fri, 02 Oct 2009 09:10:36 +0000
parents ad381cc47217
children 15ac78a91d1b
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