Uses of Class
spark.Response
-
Packages that use Response Package Description spark spark.http.matching -
-
Uses of Response in spark
Methods in spark that return Response Modifier and Type Method Description static Response
RequestResponseFactory. create(javax.servlet.http.HttpServletResponse response)
Methods in spark with parameters of type Response Modifier and Type Method Description static java.lang.Object
CustomErrorPages. getFor(int status, Request request, Response response)
Gets the custom error page for a given status code.void
ExceptionHandler. handle(T exception, Request request, Response response)
Invoked when an exception that is mapped to this handler occurs during routingabstract void
ExceptionHandlerImpl. handle(T exception, Request request, Response response)
Invoked when an exception that is mapped to this handler occurs during routingvoid
Filter. handle(Request request, Response response)
Invoked when a request is made on this filter's corresponding path e.g.abstract void
FilterImpl. handle(Request request, Response response)
Invoked when a request is made on this filter's corresponding path e.g.java.lang.Object
Route. handle(Request request, Response response)
Invoked when a request is made on this route's corresponding path e.g.abstract java.lang.Object
RouteImpl. handle(Request request, Response response)
Invoked when a request is made on this route's corresponding path e.g.ModelAndView
TemplateViewRoute. handle(Request request, Response response)
Invoked when a request is made on this route's corresponding path e.g. -
Uses of Response in spark.http.matching
Subclasses of Response in spark.http.matching Modifier and Type Class Description (package private) class
ResponseWrapper
Fields in spark.http.matching declared as Response Modifier and Type Field Description private Response
ResponseWrapper. delegate
private Response
RouteContext. response
Methods in spark.http.matching that return Response Modifier and Type Method Description (package private) Response
ResponseWrapper. getDelegate()
Response
RouteContext. response()
Methods in spark.http.matching with parameters of type Response Modifier and Type Method Description void
ResponseWrapper. setDelegate(Response delegate)
RouteContext
RouteContext. withResponse(Response response)
-