/* * Copyright (C) 2001-2004 Red Hat Inc. All Rights Reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package com.arsdigita.london.terms; import com.arsdigita.runtime.AbstractConfig; import com.arsdigita.util.parameter.Parameter; import com.arsdigita.util.parameter.ResourceParameter; import com.arsdigita.util.parameter.StringParameter; import java.io.InputStream; import java.io.IOException; import org.apache.log4j.Logger; public class TermsConfig extends AbstractConfig { private static final Logger s_log = Logger.getLogger(TermsConfig.class); private Parameter m_adapters; private Parameter m_defaultDomain; public TermsConfig() { m_adapters = new ResourceParameter ("com.arsdigita.london.terms.traversal_adapters", Parameter.REQUIRED, "/WEB-INF/resources/terms-adapters.xml"); m_defaultDomain = new StringParameter( "com.arsdigita.london.terms.default_domain", Parameter.REQUIRED, "LGCL"); register(m_adapters); register(m_defaultDomain); loadInfo(); } InputStream getTraversalAdapters() { return (InputStream) get(m_adapters); } public String getDefaultDomainKey() { return (String)get(m_defaultDomain); } public Domain getDefaultDomain() { return Domain.retrieve(getDefaultDomainKey()); } }