package com.digi.config.util; /** * This interface defines methods for finding default values */ public interface DefaultValueFinder { /** * This method defines the signature for getting the default value for a section and key *
* @param section Section name * @param key Key * @return Default value */ public String getDefaultValue(String section, String key); }