Package | Description |
---|---|
ratpack.config |
Provides the ability to access configuration data from a variety of sources, such as YAML, JSON,
properties files, system properties, and environment variables.
|
ratpack.server |
Objects used to start a ratpack application.
|
Modifier and Type | Method and Description |
---|---|
default <O> ConfigObject<O> |
ConfigData.getAsConfigObject(java.lang.String pointer,
java.lang.Class<O> type)
Binds a segment of the configuration data to the specified type.
|
<O> ConfigObject<O> |
ConfigData.getAsConfigObject(java.lang.String pointer,
com.google.common.reflect.TypeToken<O> type)
Binds a segment of the configuration data to the specified type.
|
Modifier and Type | Method and Description |
---|---|
com.google.common.collect.ImmutableSet<ConfigObject<?>> |
ServerConfig.getRequiredConfig()
The config objects that were declared as required when this server config was built.
|