edu.jhu.tmaj.util.config.data
Interface ConfigKey

All Known Implementing Classes:
ClientConstants.ClientConfigKey

public interface ConfigKey

Represents a key found in a config file. For example, in the config file you may see:
Username = jsmith
Password = 12345

Both Username and Password would be ConfigKeys.


Method Summary
 ConfigKeyType getType()
          Returns the type of the Config Key, such as a String or URL.
 boolean isRequired()
          Returns true if the Config Key must be present and must have a value for TMAJ to work.
 

Method Detail

isRequired

boolean isRequired()
Returns true if the Config Key must be present and must have a value for TMAJ to work.


getType

ConfigKeyType getType()
Returns the type of the Config Key, such as a String or URL.