Uses of Interface
ratpack.path.PathBinder
-
Packages that use PathBinder Package Description ratpack.handling The handling of application requests.ratpack.path Types for managing the paths of requests inside the application. -
-
Uses of PathBinder in ratpack.handling
Methods in ratpack.handling with parameters of type PathBinder Modifier and Type Method Description static HandlerHandlers. 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.path
Methods in ratpack.path that return PathBinder Modifier and Type Method Description PathBinderPathBinderBuilder. build(boolean exhaustive)Generate aPathBinderfrom the contents of the builder.static PathBinderPathBinder. of(boolean exhaustive, Action<? super PathBinderBuilder> action)Builds a path binder programmatically.static PathBinderPathBinder. parse(java.lang.String pathBindingSpec, boolean exhaustive)Creates a path binder by parsing the given path binding specification.
-