public interface Route<R extends RequestContext<?>>
| Modifier and Type | Method and Description |
|---|---|
Set<String> |
getAcceptedContentTypes()
The
Content-Types this route
accepts (names all lowercased). |
List<Handler<R>> |
getAfterFilters()
The "after" filters, if any.
|
List<Handler<R>> |
getBeforeFilters()
The "before" filters, if any.
|
Set<String> |
getFilterIdsToSkip()
The ids of the filters that should be skipped for this
route.
|
Set<HttpMethod> |
getHttpMethods()
The
HTTP methods this route applies to. |
String |
getId()
The route id.
|
Handler<R> |
getMainHandler()
The main handler.
|
String |
getPath()
The route path.
|
int |
getPosition()
The position at which this route should be run during a
routing process.
|
Set<RoutingType> |
getRoutingTypes()
The
routing types the route should be considered for. |
String getId()
String getPath()
Set<HttpMethod> getHttpMethods()
HTTP methods this route applies to.Set<String> getAcceptedContentTypes()
Content-Types this route
accepts (names all lowercased).Set<RoutingType> getRoutingTypes()
routing types the route should be considered for.int getPosition()
Copyright © 2018. All rights reserved.