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

org.apache.commons.configuration2.builder.XMLBuilderParametersImpl Maven / Gradle / Ivy

Go to download

Tools to assist in the reading of configuration/preferences files in various formats

There is a newer version: 2.10.1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.commons.configuration2.builder;

import javax.xml.parsers.DocumentBuilder;

import java.util.Map;

import org.xml.sax.EntityResolver;

/**
 * 

* A specialized parameters class for XML configuration. *

*

* This parameters class defines some properties which allow customizing the * parsing of XML documents. The location of the XML document to be loaded can * be specified, too. *

*

* This class is not thread-safe. It is intended that an instance is constructed * and initialized by a single thread during configuration of a * {@code ConfigurationBuilder}. *

* * @version $Id: XMLBuilderParametersImpl.java 1730383 2016-02-14 19:04:31Z oheger $ * @since 2.0 */ public class XMLBuilderParametersImpl extends HierarchicalBuilderParametersImpl implements XMLBuilderProperties { /** The key for the entity resolver property. */ private static final String PROP_ENTITY_RESOLVER = "entityResolver"; /** The key for the document builder property. */ private static final String PROP_DOCUMENT_BUILDER = "documentBuilder"; /** The key for the public ID property. */ private static final String PROP_PUBLIC_ID = "publicID"; /** The key for the system ID property. */ private static final String PROP_SYSTEM_ID = "systemID"; /** The key for the validating property. */ private static final String PROP_VALIDATING = "validating"; /** The key for the schema validation flag. */ private static final String PROP_SCHEMA_VALIDATION = "schemaValidation"; @Override public void inheritFrom(Map source) { super.inheritFrom(source); copyPropertiesFrom(source, PROP_DOCUMENT_BUILDER, PROP_ENTITY_RESOLVER, PROP_SCHEMA_VALIDATION, PROP_VALIDATING); } @Override public XMLBuilderParametersImpl setDocumentBuilder( DocumentBuilder docBuilder) { storeProperty(PROP_DOCUMENT_BUILDER, docBuilder); return this; } @Override public XMLBuilderParametersImpl setEntityResolver(EntityResolver resolver) { storeProperty(PROP_ENTITY_RESOLVER, resolver); return this; } /** * Returns the {@code EntityResolver} stored in this parameters object. * Result is null if no such object has been set. * * @return the {@code EntityResolver} or null */ public EntityResolver getEntityResolver() { return (EntityResolver) fetchProperty(PROP_ENTITY_RESOLVER); } @Override public XMLBuilderParametersImpl setPublicID(String pubID) { storeProperty(PROP_PUBLIC_ID, pubID); return this; } @Override public XMLBuilderParametersImpl setSystemID(String sysID) { storeProperty(PROP_SYSTEM_ID, sysID); return this; } @Override public XMLBuilderParametersImpl setValidating(boolean f) { storeProperty(PROP_VALIDATING, Boolean.valueOf(f)); return this; } @Override public XMLBuilderParametersImpl setSchemaValidation(boolean f) { storeProperty(PROP_SCHEMA_VALIDATION, Boolean.valueOf(f)); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy