com.enonic.xp.config.Configuration Maven / Gradle / Ivy
The newest version!
package com.enonic.xp.config;
import java.util.Map;
public interface Configuration
{
String get( String key );
boolean exists( String key );
String getOrDefault( String key, String defValue );
T get( String key, Class type );
T getOrDefault( String key, Class type, T defValue );
Configuration subConfig( String prefix );
Map asMap();
}