Uses of Interface
org.simpleframework.http.Response

Packages that use Response
org.simpleframework.http   
org.simpleframework.http.core   
org.simpleframework.http.socket   
org.simpleframework.http.socket.service   
 

Uses of Response in org.simpleframework.http
 

Classes in org.simpleframework.http that implement Response
 class ResponseWrapper
          The ResponseWrapper object is used so that the original Response object can be wrapped in a filtering proxy object.
 

Fields in org.simpleframework.http declared as Response
protected  Response ResponseWrapper.response
          This is the response instance that is being wrapped.
 

Constructors in org.simpleframework.http with parameters of type Response
ResponseWrapper(Response response)
          Constructor for ResponseWrapper object.
 

Uses of Response in org.simpleframework.http.core
 

Methods in org.simpleframework.http.core with parameters of type Response
 void Container.handle(Request req, Response resp)
          Used to pass the Request and Response to the container for processing.
 

Uses of Response in org.simpleframework.http.socket
 

Methods in org.simpleframework.http.socket that return Response
 Response Session.getResponse()
          Provides the Response used to establish the session with the remote client.
 

Uses of Response in org.simpleframework.http.socket.service
 

Methods in org.simpleframework.http.socket.service with parameters of type Response
 void RouterContainer.handle(Request req, Response resp)
          This method is used to create a dispatch a Session to a specific service selected by a router.
 Service Router.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.
 Service ProtocolRouter.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.
 Service PathRouter.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.
 Service DirectRouter.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.
 



Copyright © 2014. All Rights Reserved.