Uses of Interface
ratpack.core.path.PathBinder
-
Packages that use PathBinder Package Description ratpack.core.handling The handling of application requests.ratpack.core.path Types for managing the paths of requests inside the application. -
-
Uses of PathBinder in ratpack.core.handling
Methods in ratpack.core.handling with parameters of type PathBinder Modifier and Type Method Description static Handler
Handlers. path(PathBinder pathBinder, Handler handler)
Creates a handler that delegates to the given handlers if the request can be bound by the given path binder. -
Uses of PathBinder in ratpack.core.path
Methods in ratpack.core.path that return PathBinder Modifier and Type Method Description PathBinder
PathBinderBuilder. build(boolean exhaustive)
Generate aPathBinder
from the contents of the builder.static PathBinder
PathBinder. of(boolean exhaustive, Action<? super PathBinderBuilder> action)
Builds a path binder programmatically.static PathBinder
PathBinder. parse(String pathBindingSpec, boolean exhaustive)
Creates a path binder by parsing the given path binding specification.
-