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

org.opencms.configuration.CmsElementWithAttrsParamConfigHelper Maven / Gradle / Ivy

Go to download

OpenCms is an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.

There is a newer version: 17.0
Show newest version
/*
 * This library is part of OpenCms -
 * the Open Source Content Management System
 *
 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
 *
 * 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.
 *
 * For further information about Alkacon Software, please see the
 * company website: http://www.alkacon.com
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 *
 * 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 org.opencms.configuration;

import org.apache.commons.digester3.Digester;
import org.apache.commons.digester3.Rule;

import org.dom4j.Element;
import org.xml.sax.Attributes;

/**
* Helper class for parsing an element with no content but several attributes into a subclass of I_CmsConfigurationParameterHandler.

*/ public class CmsElementWithAttrsParamConfigHelper { /** The attributes to read / write. */ private String[] m_attrs; /** The xpath of the element. */ private String m_basePath; /** The class of the configuration object to create (must be subclass of I_CmsConfigurationParameterHandler). */ private Class m_class; /** The name of the XML element. */ private String m_name; /** * Creates a new instance.

* * @param parentPath the parent XPath * @param name the XML element name * @param cls the class to use for the configuration (must be subclass of I_CmsConfigurationParameterHandler) * @param attrs the attributes to read / write */ public CmsElementWithAttrsParamConfigHelper(String parentPath, String name, Class cls, String... attrs) { m_basePath = parentPath + "/" + name; m_name = name; m_class = cls; m_attrs = attrs; } /** * Adds the configuration parsing rules to the digester.

* * @param digester the digester to which the rules should be added */ public void addRules(Digester digester) { digester.addRule(m_basePath, new Rule() { @SuppressWarnings("synthetic-access") @Override public void begin(String namespace, String name, Attributes attributes) throws Exception { I_CmsConfigurationParameterHandler config = (I_CmsConfigurationParameterHandler)(m_class.newInstance()); for (String attr : m_attrs) { String attrValue = attributes.getValue(attr); if (attrValue != null) { config.addConfigurationParameter(attr, attrValue); } } config.initConfiguration(); getDigester().push(config); } @Override public void end(String namespace, String name) throws Exception { getDigester().pop(); } }); } /** * Generates the XML configuration from the given configuration object.

* * @param parent the parent element * @param config the configuration */ public void generateXml(Element parent, I_CmsConfigurationParameterHandler config) { if (config != null) { Element elem = parent.addElement(m_name); for (String attrName : m_attrs) { String value = config.getConfiguration().get(attrName); if (value != null) { elem.addAttribute(attrName, value); } } } } /** * Gets the xPath of the configuration element.

* * @return the xPath of the configuration element */ public String getBasePath() { return m_basePath; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy