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

com.enonic.xp.config.Configuration Maven / Gradle / Ivy

There is a newer version: 7.14.4
Show 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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy