Uses of Interface
org.simpleframework.http.Request
-
Packages that use Request Package Description org.simpleframework.http org.simpleframework.http.core org.simpleframework.http.socket org.simpleframework.http.socket.service -
-
Uses of Request in org.simpleframework.http
Classes in org.simpleframework.http that implement Request Modifier and Type Class Description classRequestWrapperTheRequestWrapperobject is used so that the originalRequestobject can be wrapped in a filtering proxy object.Fields in org.simpleframework.http declared as Request Modifier and Type Field Description protected RequestRequestWrapper. requestThis is the request instance that is being wrapped.Constructors in org.simpleframework.http with parameters of type Request Constructor Description RequestWrapper(Request request)Constructor forRequestWrapperobject. -
Uses of Request in org.simpleframework.http.core
Methods in org.simpleframework.http.core with parameters of type Request Modifier and Type Method Description voidContainer. handle(Request req, Response resp)Used to pass theRequestandResponseto the container for processing. -
Uses of Request in org.simpleframework.http.socket
Methods in org.simpleframework.http.socket that return Request Modifier and Type Method Description RequestSession. getRequest()Provides theRequestused to initiate the session. -
Uses of Request in org.simpleframework.http.socket.service
Methods in org.simpleframework.http.socket.service with parameters of type Request Modifier and Type Method Description voidRouterContainer. handle(Request req, Response resp)This method is used to create a dispatch aSessionto a specific service selected by a router.ServiceDirectRouter. route(Request request, Response response)This is used to route an incoming request to a service if the request represents a WebSocket handshake as defined by RFC 6455.ServicePathRouter. route(Request request, Response response)This is used to route an incoming request to a service if the request represents a WebSocket handshake as defined by RFC 6455.ServiceProtocolRouter. route(Request request, Response response)This is used to route an incoming request to a service if the request represents a WebSocket handshake as defined by RFC 6455.ServiceRouter. route(Request request, Response response)This is used to route an incoming request to a service if the request represents a WebSocket handshake as defined by RFC 6455.
-