install
Installs a route plugin into every route listed in the endpoints map with a mapping of method -> route
.
Return
this AbstractEndpoint to chain methods.
Parameters
The endpoints mapped from method -> route
to register it from.
The plugin to install
The configuration block to configure this plugin.
Installs a route plugin into every route listed in the routes list with the methods that are registered with it.
Return
this AbstractEndpoint to chain methods.
Parameters
A list of routes to register it on, regardless of the method.
The plugin to install
The configuration block to configure this plugin.
Installs a route plugin into every route that is installed on this AbstractEndpoint.
Return
this AbstractEndpoint to chain methods.
Parameters
The plugin to install
The configuration block to configure this plugin.
Installs a route plugin on a specific route that is installed on this AbstractEndpoint.
Return
this AbstractEndpoint to chain methods.
Parameters
The route to install it on
The plugin to install
The configuration block to configure this plugin.
Installs a Route plugin with the specified HttpMethod.
Parameters
HttpMethod to install on
Plugin to install
configure method to configure the plugin
Installs a route plugin on a specific route AND method that is installed on this AbstractEndpoint.
Return
this AbstractEndpoint to chain methods.
Parameters
The HTTP method to use to find the route to install the plugin in.
The route to install it on
The plugin to install
The configuration block to configure this plugin.