Uses of Interface
com.jayway.restassured.filter.Filter

Packages that use Filter
com.jayway.restassured   
com.jayway.restassured.builder   
com.jayway.restassured.filter.log   
com.jayway.restassured.internal   
com.jayway.restassured.internal.filter   
com.jayway.restassured.specification   
com.jayway.restassured.spi   
 

Uses of Filter in com.jayway.restassured
 

Methods in com.jayway.restassured that return types with arguments of type Filter
static List<Filter> RestAssured.filters()
           
 

Methods in com.jayway.restassured with parameters of type Filter
static void RestAssured.filters(Filter filter, Filter... additionalFilters)
          The the default filters to apply to each request.
static void RestAssured.filters(Filter filter, Filter... additionalFilters)
          The the default filters to apply to each request.
 

Method parameters in com.jayway.restassured with type arguments of type Filter
static void RestAssured.filters(List<Filter> filters)
          The the default filters to apply to each request.
 

Uses of Filter in com.jayway.restassured.builder
 

Methods in com.jayway.restassured.builder with parameters of type Filter
 RequestSpecBuilder RequestSpecBuilder.addFilter(Filter filter)
          Add a filter that will be used in the request.
 

Method parameters in com.jayway.restassured.builder with type arguments of type Filter
 RequestSpecBuilder RequestSpecBuilder.addFilters(List<Filter> filters)
          Add filters that will be used in the request.
 

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

Classes in com.jayway.restassured.filter.log that implement Filter
 class ErrorLoggingFilter
          A filter that'll print the response body if an error occurred (status code is between 400 and 500).
 class RequestLoggingFilter
          Will log the request before it's passed to HTTP Builder.
 class ResponseLoggingFilter
          A filter that'll print the response body if the response matches a given status code.
 

Methods in com.jayway.restassured.filter.log that return Filter
static Filter ErrorLoggingFilter.errorLogger()
          Create a new error logging filter without using the "new" operator.
static Filter ErrorLoggingFilter.logErrorsTo(PrintStream stream)
          Create a new error logging filter without using the "new" operator.
static Filter ResponseLoggingFilter.logResponseIfStatusCodeIs(int statusCode)
          Create a new logging filter without using the "new" operator.
static Filter ResponseLoggingFilter.logResponseIfStatusCodeMatches(org.hamcrest.Matcher<Integer> matcher)
          Create a new logging filter without using the "new" operator.
static Filter ResponseLoggingFilter.logResponseTo(PrintStream stream)
          Create a new logging filter without using the "new" operator.
static Filter ResponseLoggingFilter.logResponseTo(PrintStream stream, LogDetail logDetail)
          Create a new logging filter without using the "new" operator.
static Filter ResponseLoggingFilter.logResponseToIfMatches(PrintStream stream, org.hamcrest.Matcher<Integer> matcher)
          Create a new logging filter without using the "new" operator.
static Filter ResponseLoggingFilter.responseLogger()
          Create a new logging filter without using the "new" operator.
 

Uses of Filter in com.jayway.restassured.internal
 

Methods in com.jayway.restassured.internal with type parameters of type Filter
<T extends Filter>
RequestSpecification
RequestSpecificationImpl.noFiltersOfType(Class<T> filterType)
           
 

Methods in com.jayway.restassured.internal that return types with arguments of type Filter
 List<Filter> RequestSpecificationImpl.getDefinedFilters()
           
 

Methods in com.jayway.restassured.internal with parameters of type Filter
 RequestSpecification RequestSpecificationImpl.filter(Filter filter)
           
 RequestSpecification RequestSpecificationImpl.filters(Filter filter, Filter[] additionalFilter)
           
 RequestSpecification RequestSpecificationImpl.filters(Filter filter, Filter[] additionalFilter)
           
 

Method parameters in com.jayway.restassured.internal with type arguments of type Filter
 RequestSpecification RequestSpecificationImpl.filters(List<Filter> filters)
           
 

Constructor parameters in com.jayway.restassured.internal with type arguments of type Filter
RequestSpecificationImpl(String baseURI, int requestPort, String basePath, AuthenticationScheme defaultAuthScheme, List<Filter> filters, KeystoreSpec keyStoreSpec, Object defaultRequestContentType, RequestSpecification defaultSpec, boolean urlEncode, RestAssuredConfig restAssuredConfig)
           
 

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

Classes in com.jayway.restassured.internal.filter that implement Filter
 class FormAuthFilter
           
 class RootFilter
           
 

Constructor parameters in com.jayway.restassured.internal.filter with type arguments of type Filter
FilterContextImpl(String path, groovyx.net.http.Method method, Object assertionClosure, List<Filter> filterList)
           
 

Uses of Filter in com.jayway.restassured.specification
 

Methods in com.jayway.restassured.specification with type parameters of type Filter
<T extends Filter>
RequestSpecification
RequestSpecification.noFiltersOfType(Class<T> filterType)
          Remove all applied filters
 

Methods in com.jayway.restassured.specification that return types with arguments of type Filter
 List<Filter> FilterableRequestSpecification.getDefinedFilters()
           
 

Methods in com.jayway.restassured.specification with parameters of type Filter
 RequestSpecification RequestSpecification.filter(Filter filter)
          Add a filter that will be used in the request.
 RequestSpecification RequestSpecification.filters(Filter filter, Filter... additionalFilter)
          Add filters that will be used in the request.
 RequestSpecification RequestSpecification.filters(Filter filter, Filter... additionalFilter)
          Add filters that will be used in the request.
 

Method parameters in com.jayway.restassured.specification with type arguments of type Filter
 RequestSpecification RequestSpecification.filters(List<Filter> filters)
          Add filters that will be used in the request.
 

Uses of Filter in com.jayway.restassured.spi
 

Subinterfaces of Filter in com.jayway.restassured.spi
 interface AuthFilter
          Marker interface for authentication filters.
 



Copyright © 2010-2011. All Rights Reserved.