Example usage for org.apache.commons.httpclient.server SimpleResponse setStatusLine

List of usage examples for org.apache.commons.httpclient.server SimpleResponse setStatusLine

Introduction

In this page you can find the example usage for org.apache.commons.httpclient.server SimpleResponse setStatusLine.

Prototype

public void setStatusLine(final HttpVersion ver, int statuscode) 

Source Link

Usage

From source file:org.eclipse.ecf.tests.remoteservice.rest.service.SimpleRestService.java

protected void hookResponse(SimpleHttpServerConnection conn, String body) throws IOException {
    SimpleResponse res = new SimpleResponse();
    res.setStatusLine(HttpVersion.HTTP_1_1, HttpStatus.SC_OK);
    res.setBodyString(body);/* w  ww  .j  av a  2  s. co  m*/
    conn.setKeepAlive(false);
    conn.writeResponse(res);
}