Uses of Interface
ratpack.core.impose.Imposition
-
Packages that use Imposition Package Description ratpack.core.impose ratpack.guice Integration with Google Guice. -
-
Uses of Imposition in ratpack.core.impose
Classes in ratpack.core.impose that implement Imposition Modifier and Type Class Description class
ForceDevelopmentImposition
Forces whether to start the application inServerConfig.isDevelopment()
mode or not.class
ForceServerListenPortImposition
Forces the port that the server should use to listen for requests.class
ServerConfigImposition
An override object for imposing server configuration.class
UserRegistryImposition
Imposes an extra registry to be joined with the user registry when starting an application.Methods in ratpack.core.impose with type parameters of type Imposition Modifier and Type Method Description <T extends Imposition>
Optional<T>Impositions. get(Class<T> type)
Deprecated.since 1.9, useImpositions.getAll(Class)
.<T extends Imposition>
Iterable<? extends T>Impositions. getAll(Class<T> type)
Return all impositions of the given type.Methods in ratpack.core.impose with parameters of type Imposition Modifier and Type Method Description ImpositionsSpec
ImpositionsSpec. add(Imposition imposition)
Adds the imposition, replacing any previous imposition of the exact same type. -
Uses of Imposition in ratpack.guice
Classes in ratpack.guice that implement Imposition Modifier and Type Class Description class
BindingsImposition
Animposition
of additional and overridden Guice bindings, used byGuice.registry(Action)
and similar methods.
-