Uses of Interface
com.jayway.restassured.response.Response

Packages that use Response
com.jayway.restassured   
com.jayway.restassured.assertion   
com.jayway.restassured.builder   
com.jayway.restassured.filter   
com.jayway.restassured.filter.log   
com.jayway.restassured.internal   
com.jayway.restassured.internal.filter   
com.jayway.restassured.internal.support   
com.jayway.restassured.response   
com.jayway.restassured.specification   
 

Uses of Response in com.jayway.restassured
 

Methods in com.jayway.restassured that return Response
static Response RestAssured.delete(String path, Map<String,?> pathParams)
          Perform a DELETE request to a path.
static Response RestAssured.delete(String path, Object... pathParams)
          Perform a DELETE request to a path.
static Response RestAssured.get(String path, Map<String,?> pathParams)
          Perform a GET request to a path.
static Response RestAssured.get(String path, Object... pathParams)
          Perform a GET request to a path.
static Response RestAssured.head(String path, Map<String,?> pathParams)
          Perform a HEAD request to a path.
static Response RestAssured.head(String path, Object... pathParams)
          Perform a HEAD request to a path.
static Response RestAssured.post(String path, Map<String,?> pathParams)
          Perform a POST request to a path.
static Response RestAssured.post(String path, Object... pathParams)
          Perform a POST request to a path.
static Response RestAssured.put(String path, Object... pathParams)
          Perform a PUT request to a path.
 

Uses of Response in com.jayway.restassured.assertion
 

Methods in com.jayway.restassured.assertion with parameters of type Response
 Object BodyMatcher.fallbackToResponseBodyIfContentHasAlreadyBeenRead(Response response, Object content)
           
 Object BodyMatcher.isFulfilled(Response response, Object content)
           
 Object BodyMatcherGroup.isFulfilled(Response response, Object content)
           
static Object StreamVerifier.newAssertion(Response response, Object key, ResponseParserRegistrar rpr)
           
 

Uses of Response in com.jayway.restassured.builder
 

Methods in com.jayway.restassured.builder that return Response
 Response ResponseBuilder.build()
          Build the actual response
 

Methods in com.jayway.restassured.builder with parameters of type Response
 ResponseBuilder ResponseBuilder.clone(Response response)
          Clone an already existing response.
 

Uses of Response in com.jayway.restassured.filter
 

Methods in com.jayway.restassured.filter that return Response
 Response Filter.filter(FilterableRequestSpecification requestSpec, FilterableResponseSpecification responseSpec, FilterContext ctx)
          Filter the incoming request and response specifications and outgoing response.
 Response FilterContext.next(FilterableRequestSpecification request, FilterableResponseSpecification response)
          Continue to the next filter in the chain.
 Response FilterContext.send(RequestSender requestSender)
          Send a request to the same request path and with the same request method as the original request.
 

Uses of Response in com.jayway.restassured.filter.log
 

Methods in com.jayway.restassured.filter.log that return Response
 Response RequestLoggingFilter.filter(FilterableRequestSpecification requestSpec, FilterableResponseSpecification responseSpec, FilterContext ctx)
           
 

Uses of Response in com.jayway.restassured.internal
 

Classes in com.jayway.restassured.internal that implement Response
 class RestAssuredResponseImpl
           
 

Methods in com.jayway.restassured.internal that return Response
 Response RestAssuredResponseImpl.andReturn()
           
 Response RequestSpecificationImpl.delete(String path, Map pathParams)
           
 Response TestSpecificationImpl.delete(String path, Map pathParams)
           
 Response ResponseSpecificationImpl.delete(String path, Map pathParams)
           
 Response RequestSpecificationImpl.delete(String path, Object... pathParams)
           
 Response TestSpecificationImpl.delete(String path, Object... pathParams)
           
 Response ResponseSpecificationImpl.delete(String path, Object... pathParams)
           
 Response RequestSpecificationImpl.get(String path, Map pathParams)
           
 Response TestSpecificationImpl.get(String path, Map pathParams)
           
 Response ResponseSpecificationImpl.get(String path, Map pathParams)
           
 Response RequestSpecificationImpl.get(String path, Object... pathParams)
           
 Response TestSpecificationImpl.get(String path, Object... pathParams)
           
 Response ResponseSpecificationImpl.get(String path, Object... pathParams)
           
 Response RequestSpecificationImpl.head(String path, Map pathParams)
           
 Response TestSpecificationImpl.head(String path, Map pathParams)
           
 Response ResponseSpecificationImpl.head(String path, Map pathParams)
           
 Response RequestSpecificationImpl.head(String path, Object... pathParams)
           
 Response TestSpecificationImpl.head(String path, Object... pathParams)
           
 Response ResponseSpecificationImpl.head(String path, Object... pathParams)
           
 Response RequestSpecificationImpl.post(String path, Map pathParams)
           
 Response TestSpecificationImpl.post(String path, Map pathParams)
           
 Response ResponseSpecificationImpl.post(String path, Map pathParams)
           
 Response RequestSpecificationImpl.post(String path, Object... pathParams)
           
 Response TestSpecificationImpl.post(String path, Object... pathParams)
           
 Response ResponseSpecificationImpl.post(String path, Object... pathParams)
           
 Response RequestSpecificationImpl.put(String path, Map pathParams)
           
 Response TestSpecificationImpl.put(String path, Map pathParams)
           
 Response ResponseSpecificationImpl.put(String path, Map pathParams)
           
 Response RequestSpecificationImpl.put(String path, Object... pathParams)
           
 Response TestSpecificationImpl.put(String path, Object... pathParams)
           
 Response ResponseSpecificationImpl.put(String path, Object... pathParams)
           
 Response RestAssuredResponseImpl.thenReturn()
           
 

Methods in com.jayway.restassured.internal with parameters of type Response
 Object ContentParser.parse(Response response, ResponseParserRegistrar rpr)
           
 Object ResponseSpecificationImpl.HamcrestAssertionClosure.validate(Response response)
           
 

Uses of Response in com.jayway.restassured.internal.filter
 

Methods in com.jayway.restassured.internal.filter that return Response
 Response FormAuthFilter.filter(FilterableRequestSpecification requestSpec, FilterableResponseSpecification responseSpec, FilterContext ctx)
           
 Response RootFilter.filter(FilterableRequestSpecification requestSpecification, FilterableResponseSpecification responseSpecification, FilterContext context)
           
 Response FilterContextImpl.next(FilterableRequestSpecification request, FilterableResponseSpecification response)
           
 Response FilterContextImpl.send(RequestSender requestSender)
           
 

Uses of Response in com.jayway.restassured.internal.support
 

Methods in com.jayway.restassured.internal.support with parameters of type Response
 String Prettifier.getPrettifiedBodyIfPossible(Response response)
           
 

Uses of Response in com.jayway.restassured.response
 

Methods in com.jayway.restassured.response that return Response
 Response Response.andReturn()
          Syntactic sugar, simply returns the same response instance.
 Response Response.thenReturn()
          Syntactic sugar, simply returns the same response instance.
 

Uses of Response in com.jayway.restassured.specification
 

Methods in com.jayway.restassured.specification that return Response
 Response RequestSender.delete(String path, Map<String,?> pathParams)
          Perform a DELETE request to a path.
 Response RequestSender.delete(String path, Object... pathParams)
          Perform a DELETE request to a path.
 Response RequestSender.get(String path, Map<String,?> pathParams)
          Perform a GET request to a path.
 Response RequestSender.get(String path, Object... pathParams)
          Perform a GET request to a path.
 Response RequestSender.head(String path, Map<String,?> pathParams)
          Perform a HEAD request to a path.
 Response RequestSender.head(String path, Object... pathParams)
          Perform a HEAD request to a path.
 Response RequestSender.post(String path, Map<String,?> pathParams)
          Perform a POST request to a path.
 Response RequestSender.post(String path, Object... pathParams)
          Perform a POST request to a path.
 Response RequestSender.put(String path, Map<String,?> pathParams)
          Perform a PUT request to a path.
 Response RequestSender.put(String path, Object... pathParams)
          Perform a PUT request to a path.
 



Copyright © 2010-2012. All Rights Reserved.