org.cache2k.xmlConfig.ApplyConfiguration Maven / Gradle / Ivy
The newest version!
package org.cache2k.xmlConfig;
/*
* #%L
* cache2k XML configuration
* %%
* Copyright (C) 2000 - 2016 headissue GmbH, Munich
* %%
* Licensed 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.
* #L%
*/
import org.cache2k.core.util.Log;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
import java.util.concurrent.TimeUnit;
/**
* Read configuration from a pull parser and apply it to the object.
*
* @author Jens Wilke
*/
public class ApplyConfiguration {
private final static String _SETTER_PREFIX = "set";
private static volatile Map, Map> settersLookupMap =
new HashMap, Map>();
private static Map, FieldParser> type2parser = new HashMap, FieldParser>();
private static Log log = Log.getLog(ApplyConfiguration.class);
private LinkedList
© 2015 - 2025 Weber Informatics LLC | Privacy Policy