ConfigurationResource<ErrorManager> |
ContextConfiguration.addErrorManager(String name,
Supplier<ErrorManager> errorManager) |
Adds an error manager to the context configuration.
|
ConfigurationResource<Filter> |
ContextConfiguration.addFilter(String name,
Supplier<Filter> filter) |
Adds a filter to the context configuration.
|
ConfigurationResource<Formatter> |
ContextConfiguration.addFormatter(String name,
Supplier<Formatter> formatter) |
Adds a formatter to the context configuration.
|
ConfigurationResource<Handler> |
ContextConfiguration.addHandler(String name,
Supplier<Handler> handler) |
Adds a handler to the context configuration.
|
ConfigurationResource<Object> |
ContextConfiguration.addObject(String name,
Supplier<Object> object) |
Adds an object that can be used as a configuration property for another configuration type.
|
static <T> ConfigurationResource<T> |
ConfigurationResource.of(Supplier<T> supplier) |
Creates a configuration resource which lazily invokes the supplier.
|
static <T> ConfigurationResource<T> |
ConfigurationResource.of(T instance) |
Creates a configuration resource with the instance as a constant.
|
ConfigurationResource<ErrorManager> |
ContextConfiguration.removeErrorManager(String name) |
Removes the error manager from the context configuration.
|
ConfigurationResource<Filter> |
ContextConfiguration.removeFilter(String name) |
Removes the filter from the context configuration.
|
ConfigurationResource<Formatter> |
ContextConfiguration.removeFormatter(String name) |
Removes the formatter from the context configuration.
|
ConfigurationResource<Handler> |
ContextConfiguration.removeHandler(String name) |
Removes the handler from the context configuration.
|
ConfigurationResource<Object> |
ContextConfiguration.removeObject(String name) |
Removes the configuration object from the context configuration.
|