org.mydotey.scf.labeled.LabeledConfigurationSource Maven / Gradle / Ivy
package org.mydotey.scf.labeled;
import java.util.Collection;
import org.mydotey.scf.ConfigurationSource;
import org.mydotey.scf.PropertyConfig;
/**
* @author koqizhao
*
* Jun 15, 2018
*/
public interface LabeledConfigurationSource extends ConfigurationSource {
/**
* @param noLabelConfig normal config with plain key (non-labeled-key)
*/
V getPropertyValue(PropertyConfig noLabelConfig, Collection labels);
}