Uses of Interface
ratpack.config.ConfigObject
-
Packages that use ConfigObject 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.core.server Objects used to start a ratpack application. -
-
Uses of ConfigObject in ratpack.config
Methods in ratpack.config that return ConfigObject Modifier and Type Method Description <O> ConfigObject<O>
ConfigData. getAsConfigObject(String pointer, com.google.common.reflect.TypeToken<O> type)
Binds a segment of the configuration data to the specified type.default <O> ConfigObject<O>
ConfigData. getAsConfigObject(String pointer, Class<O> type)
Binds a segment of the configuration data to the specified type. -
Uses of ConfigObject in ratpack.core.server
Methods in ratpack.core.server that return types with arguments of type ConfigObject Modifier and Type Method Description com.google.common.collect.ImmutableSet<ConfigObject<?>>
ServerConfig. getRequiredConfig()
The config objects that were declared as required when this server config was built.
-