Uses of Class
spark.RouteImpl
-
Packages that use RouteImpl Package Description spark spark.route -
-
Uses of RouteImpl in spark
Subclasses of RouteImpl in spark Modifier and Type Class Description class
ResponseTransformerRouteImpl
A ResponseTransformerRouteImpl is built up by a path (for url-matching) and the implementation of the 'render' method.class
TemplateViewRouteImpl
A TemplateViewRoute is built up by a path (for url-matching) and the implementation of the 'render' method.Methods in spark that return RouteImpl Modifier and Type Method Description static RouteImpl
RouteImpl. create(java.lang.String path, java.lang.String acceptType, Route route)
Wraps the route in RouteImplstatic RouteImpl
RouteImpl. create(java.lang.String path, Route route)
Wraps the route in RouteImplprivate RouteImpl
Routable. createRouteImpl(java.lang.String path, java.lang.String acceptType, Route route)
Create route implementation or use default response transformerprivate RouteImpl
Routable. createRouteImpl(java.lang.String path, Route route)
Create route implementation or use default response transformerRouteImpl
RouteImpl. withPrefix(java.lang.String prefix)
Prefix the path (used forService.path(java.lang.String, spark.RouteGroup)
)Methods in spark with parameters of type RouteImpl Modifier and Type Method Description protected abstract void
Routable. addRoute(java.lang.String httpMethod, RouteImpl route)
Deprecated.protected abstract void
Routable. addRoute(HttpMethod httpMethod, RouteImpl route)
Adds a routevoid
Service. addRoute(java.lang.String httpMethod, RouteImpl route)
Deprecated.void
Service. addRoute(HttpMethod httpMethod, RouteImpl route)
-
Uses of RouteImpl in spark.route
Methods in spark.route with parameters of type RouteImpl Modifier and Type Method Description void
Routes. add(HttpMethod httpMethod, RouteImpl route)
Add a route
-