apollo.spi.ConfigFactoryManager Maven / Gradle / Ivy
The newest version!
package apollo.spi;
/**
* @author Jason Song([email protected])
*/
public interface ConfigFactoryManager {
/**
* Get the config factory for the appNamespace.
*
* @param namespace the appNamespace
* @return the config factory for this appNamespace
*/
public ConfigFactory getFactory(String namespace);
}