play.libs
Class WS.HttpResponse

java.lang.Object
  extended by play.libs.WS.HttpResponse
Enclosing class:
WS

public static class WS.HttpResponse
extends java.lang.Object

An HTTP response wrapper


Constructor Summary
WS.HttpResponse(org.apache.commons.httpclient.HttpMethod method)
          you shouldnt have to create an HttpResponse yourself
 
Method Summary
 java.lang.String getContentType()
          The http response content type
 java.lang.String getHeader(java.lang.String key)
           
 com.google.gson.JsonElement getJson()
          get the reponse body as a JSONObject
 java.lang.Integer getStatus()
          the HTTP status code
 java.io.InputStream getStream()
          get the response as a stream
 java.lang.String getString()
          get the response body as a string
 org.w3c.dom.Document getXml()
          Parse and get the response body as a DOM document
 org.w3c.dom.Document getXml(java.lang.String encoding)
          parse and get the response body as a DOM document
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WS.HttpResponse

public WS.HttpResponse(org.apache.commons.httpclient.HttpMethod method)
you shouldnt have to create an HttpResponse yourself

Parameters:
method -
Method Detail

getStatus

public java.lang.Integer getStatus()
the HTTP status code

Returns:

getContentType

public java.lang.String getContentType()
The http response content type


getHeader

public java.lang.String getHeader(java.lang.String key)

getXml

public org.w3c.dom.Document getXml()
Parse and get the response body as a DOM document

Returns:
a DOM document

getXml

public org.w3c.dom.Document getXml(java.lang.String encoding)
parse and get the response body as a DOM document

Parameters:
encoding - xml charset encoding
Returns:
a DOM document

getString

public java.lang.String getString()
get the response body as a string

Returns:

getStream

public java.io.InputStream getStream()
get the response as a stream

Returns:
an inputstream

getJson

public com.google.gson.JsonElement getJson()
get the reponse body as a JSONObject

Returns:
the json response


Guillaume Bort & zenexity - Distributed under Apache 2 licence, without any warrantly