Package org.mortbay.jetty.rhttp.client

Examples of org.mortbay.jetty.rhttp.client.RHTTPResponse


            this.client = client;
        }

        public void onRequest(RHTTPRequest request) throws Exception
        {
            RHTTPResponse response = new RHTTPResponse(request.getId(), 200, "OK", new HashMap<String, String>(), request.getBody());
            client.deliver(response);
        }
View Full Code Here

TOP

Related Classes of org.mortbay.jetty.rhttp.client.RHTTPResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.