net.stickycode.configured.ConfigurationKeyElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sticky-configured-api Show documentation
Show all versions of sticky-configured-api Show documentation
Taking the configuration out of applications, using the same principles that underly dependency injection
package net.stickycode.configured;
public interface ConfigurationKeyElement {
/**
* The type of the configuration key.
*/
Class> getType();
/**
* The name of the configuration key.
*/
String getName();
}