/**************************************************************************** * Copyright (C) 2012 ecsec GmbH. * All rights reserved. * Contact: ecsec GmbH (info@ecsec.de) * * This file is part of the Open eCard App. * * GNU General Public License Usage * This file may be used under the terms of the GNU General Public * License version 3.0 as published by the Free Software Foundation * and appearing in the file LICENSE.GPL included in the packaging of * this file. Please review the following information to ensure the * GNU General Public License version 3.0 requirements will be met: * http://www.gnu.org/copyleft/gpl.html. * * Other Usage * Alternatively, this file may be used in accordance with the terms * and conditions contained in a signed written agreement between * you and ecsec GmbH. * ***************************************************************************/ package org.openecard.ifd.scio; import java.io.IOException; import java.util.Properties; import org.openecard.common.OverridingProperties; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * * @author Tobias Wich <tobias.wich@ecsec.de> */ public class IFDProperties { private static final Logger _logger = LoggerFactory.getLogger(IFDProperties.class); private static class Internal extends OverridingProperties { public Internal() throws IOException { super("ifd.properties"); } } static { try { properties = new Internal(); } catch (IOException ex) { // in that case a null pointer occurs when properties is accessed _logger.error(ex.getMessage(), ex); } } private static Internal properties; public static String getProperty(String key) { return properties.getProperty(key); } public static Object setProperty(String key, String value) { return properties.setProperty(key, value); } public static Properties properties() { return properties.properties(); } }