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

com.socialbakers.config.IParamDefinition Maven / Gradle / Ivy

Go to download

Maven plugin for small application config support. Allows you to define configuration for your application at one place and generate config files and java class. Configuration can be instantiate by var args, file config or environment variables or combination of all.

There is a newer version: 0.4.2
Show newest version
package com.socialbakers.config;

public interface IParamDefinition {

	String getDefaultValue();

	String getDescription();

	String getEnv();

	String getJavaType();

	String getName();

	String getOption();

	Integer getOrder();

	boolean isRequired();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy