Uses of Interface
com.github.restdriver.serverdriver.http.response.Response

Packages that use Response
com.github.restdriver.serverdriver   
com.github.restdriver.serverdriver.http.response   
com.github.restdriver.serverdriver.matchers   
 

Uses of Response in com.github.restdriver.serverdriver
 

Methods in com.github.restdriver.serverdriver that return Response
static Response RestServerDriver.delete(Object url, Header... headers)
          Send an HTTP delete.
static Response RestServerDriver.deleteOf(Object url, Header... headers)
          Synonym for RestServerDriver.delete(Object, Header...).
static Response RestServerDriver.deleting(Object url, Header... headers)
          Synonym for RestServerDriver.delete(Object, Header...).
static Response RestServerDriver.doDeleteOf(Object url, Header... headers)
          Synonym for RestServerDriver.delete(Object, Header...).
static Response RestServerDriver.doGetOf(Object url, Header... headers)
          Synonym for RestServerDriver.get(Object, Header...).
static Response RestServerDriver.doPostOf(Object url, RequestBody body, Header... headers)
          Synonym for RestServerDriver.post(Object, RequestBody, Header...).
static Response RestServerDriver.doPutOf(Object url, RequestBody body, Header... headers)
          Synonym for RestServerDriver.put(Object, RequestBody, Header...).
static Response RestServerDriver.get(Object url, Header... headers)
          Perform an HTTP GET on a resource.
static Response RestServerDriver.getOf(Object url, Header... headers)
          Synonym for RestServerDriver.get(Object, Header...).
static Response RestServerDriver.getting(Object url, Header... headers)
          Synonym for RestServerDriver.get(Object, Header...).
static Response RestServerDriver.post(Object url, RequestBody body, Header... headers)
          Perform an HTTP POST to the given URL.
static Response RestServerDriver.posting(Object url, RequestBody body, Header... headers)
          Synonym for RestServerDriver.post(Object, RequestBody, Header...).
static Response RestServerDriver.postOf(Object url, RequestBody body, Header... headers)
          Synonym for RestServerDriver.post(Object, RequestBody, Header...).
static Response RestServerDriver.put(Object url, RequestBody body, Header... headers)
          Perform an HTTP PUT to the given URL.
static Response RestServerDriver.putOf(Object url, RequestBody body, Header... headers)
          Synonym for RestServerDriver.put(Object, RequestBody, Header...).
static Response RestServerDriver.putting(Object url, RequestBody body, Header... headers)
          Synonym for RestServerDriver.put(Object, RequestBody, Header...).
 

Methods in com.github.restdriver.serverdriver that return types with arguments of type Response
static org.hamcrest.TypeSafeMatcher<Response> Matchers.hasHeader(String name)
          Creates a new instance of HasHeader.
static org.hamcrest.TypeSafeMatcher<Response> Matchers.hasHeaderWithValue(String name, org.hamcrest.Matcher<String> valueMatcher)
          Creates a new instance of HasHeaderWithValue.
static org.hamcrest.TypeSafeMatcher<Response> Matchers.hasResponseBody(org.hamcrest.Matcher<String> bodyMatcher)
          Creates a new instance of HasResponseBody.
static org.hamcrest.TypeSafeMatcher<Response> Matchers.hasStatusCode(int statusCode)
          Creates a new instance of HasStatusCode.
static org.hamcrest.TypeSafeMatcher<Response> Matchers.hasStatusCode(org.hamcrest.Matcher<Integer> statusCodeMatcher)
          Creates a new instance of HasStatusCode.
 

Methods in com.github.restdriver.serverdriver with parameters of type Response
static org.codehaus.jackson.JsonNode Json.asJson(Response response)
          Converts the content of the response to a JSON node.
 

Uses of Response in com.github.restdriver.serverdriver.http.response
 

Classes in com.github.restdriver.serverdriver.http.response that implement Response
 class DefaultResponse
          Our class which describes an HTTP response.
 

Uses of Response in com.github.restdriver.serverdriver.matchers
 

Methods in com.github.restdriver.serverdriver.matchers with parameters of type Response
protected  void HasHeader.describeMismatchSafely(Response response, org.hamcrest.Description mismatchDescription)
           
protected  void HasStatusCode.describeMismatchSafely(Response item, org.hamcrest.Description mismatchDescription)
           
protected  void HasHeaderWithValue.describeMismatchSafely(Response response, org.hamcrest.Description mismatchDescription)
           
protected  boolean HasHeader.matchesSafely(Response response)
           
protected  boolean HasStatusCode.matchesSafely(Response item)
           
 boolean HasResponseBody.matchesSafely(Response actualResponse)
           
protected  boolean HasHeaderWithValue.matchesSafely(Response response)
           
 



Copyright © 2011. All Rights Reserved.