001/* 002 * Licensed to the Apache Software Foundation (ASF) under one or more 003 * contributor license agreements. See the NOTICE file distributed with 004 * this work for additional information regarding copyright ownership. 005 * The ASF licenses this file to You under the Apache License, Version 2.0 006 * (the "License"); you may not use this file except in compliance with 007 * the License. You may obtain a copy of the License at 008 * 009 * https://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017package org.apache.commons.configuration2.builder; 018 019import java.util.Map; 020 021import org.apache.commons.configuration2.ConfigurationConsumer; 022import org.apache.commons.configuration2.PropertiesConfiguration.IOFactory; 023import org.apache.commons.configuration2.PropertiesConfigurationLayout; 024import org.apache.commons.configuration2.ex.ConfigurationException; 025 026/** 027 * <p> 028 * A specialized parameter class for configuring {@code PropertiesConfiguration} instances. 029 * </p> 030 * <p> 031 * This class allows setting of some properties specific to properties configuration, for example the layout object. By 032 * inheriting from {@link FileBasedBuilderParametersImpl}, basic properties and properties related to file-based 033 * configurations are available, too. 034 * </p> 035 * <p> 036 * This class is not thread-safe. It is intended that an instance is constructed and initialized by a single thread 037 * during configuration of a {@code ConfigurationBuilder}. 038 * </p> 039 * 040 * @since 2.0 041 */ 042public class PropertiesBuilderParametersImpl extends FileBasedBuilderParametersImpl implements PropertiesBuilderProperties<PropertiesBuilderParametersImpl> { 043 /** The key for the include listener property. */ 044 private static final String PROP_INCLUDE_LISTENER = "includeListener"; 045 046 /** The key for the includes allowed property. */ 047 private static final String PROP_INCLUDES_ALLOWED = "includesAllowed"; 048 049 /** The key for the layout property. */ 050 private static final String PROP_LAYOUT = "layout"; 051 052 /** The key for the IO factory property. */ 053 private static final String PROP_IO_FACTORY = "IOFactory"; 054 055 /** 056 * Constructs a new instance. 057 */ 058 public PropertiesBuilderParametersImpl() { 059 // empty 060 } 061 062 /** 063 * {@inheritDoc} This implementation takes some more properties into account that are defined in this class. 064 */ 065 @Override 066 public void inheritFrom(final Map<String, ?> source) { 067 super.inheritFrom(source); 068 copyPropertiesFrom(source, PROP_INCLUDES_ALLOWED, PROP_INCLUDE_LISTENER, PROP_IO_FACTORY); 069 } 070 071 @Override 072 public PropertiesBuilderParametersImpl setIncludeListener(final ConfigurationConsumer<ConfigurationException> includeListener) { 073 storeProperty(PROP_INCLUDE_LISTENER, includeListener); 074 return this; 075 } 076 077 @Override 078 public PropertiesBuilderParametersImpl setIncludesAllowed(final boolean f) { 079 storeProperty(PROP_INCLUDES_ALLOWED, Boolean.valueOf(f)); 080 return this; 081 } 082 083 @Override 084 public PropertiesBuilderParametersImpl setIOFactory(final IOFactory factory) { 085 storeProperty(PROP_IO_FACTORY, factory); 086 return this; 087 } 088 089 @Override 090 public PropertiesBuilderParametersImpl setLayout(final PropertiesConfigurationLayout layout) { 091 storeProperty(PROP_LAYOUT, layout); 092 return this; 093 } 094}