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

com.dangdang.config.service.ConfigGroup Maven / Gradle / Ivy

package com.dangdang.config.service;

import com.dangdang.config.service.observer.ISubject;

import java.io.Closeable;
import java.util.Map;

/**
 * Configuration Group
 * 
 * @author Yuxuan Wang
 *
 */
public interface ConfigGroup extends Map, Closeable, ISubject {

	/**
	 * 获取配置
	 * @param key
	 * @return
	 */
	String get(String key);

	/**
	 * 兼容spring,是否通过EnumerablePropertySource加载配置组
	 * @return
	 */
	boolean isEnumerable();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy