Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 293 Bytes

File metadata and controls

10 lines (8 loc) · 293 Bytes

Simple Config API implementation based on Spring.

Usage :

Environment env = ...;
ConfigParams config = new TestConfigParamsEnvironment( env );
String value1 = config.getValue( "testconfig.param1" );
Optional<String> value2 = config.getOptionalValue( "testconfig.param2" );