A B C D E F G H I J L M N O P Q R S T V W X 

A

addCookie(Cookie) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Add a detailed cookie
addCookie(String, Object, Object...) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Add a cookie to be sent with the request.
addCookies(Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Add cookies to be sent with the request as Map e.g:
addFormParam(String, Collection<?>) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
 
addFormParam(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
 
addFormParams(Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
 
addHeader(String, String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Add a header to be sent with the request
addHeader(Header) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Add a header to be sent with the request.
addHeaders(Map<String, String>) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Add headers to be sent with the request as Map.
addMockMvcRequestSpecification(MockMvcRequestSpecification) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Merge this builder with settings from another specification.
addMultiPart(File) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify a file to upload to the server using multi-part form data uploading.
addMultiPart(String, File) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify a file to upload to the server using multi-part form data uploading with a specific control name.
addMultiPart(String, File, String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify a file to upload to the server using multi-part form data uploading with a specific control name and content-type.
addMultiPart(String, String, byte[]) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify a byte-array to upload to the server using multi-part form data.
addMultiPart(String, String, byte[], String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify a byte-array to upload to the server using multi-part form data.
addMultiPart(String, String, InputStream) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify an inputstream to upload to the server using multi-part form data.
addMultiPart(String, String, InputStream, String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify an inputstream to upload to the server using multi-part form data.
addMultiPart(String, String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify a string to send to the server using multi-part form data.
addMultiPart(String, String, String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify a string to send to the server using multi-part form data with a specific mime-type.
addParam(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
 
addParam(String, Collection<?>) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
 
addParams(Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
 
addQueryParam(String, Collection<?>) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
 
addQueryParam(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
 
addQueryParams(Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
 
addResultHandlers(ResultHandler, ResultHandler...) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Add a result handler
all(boolean) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
all() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
and() - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
Syntactic sugar.
and() - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Returns the same MockMvcRequestSpecBuilder instance for syntactic sugar.
assertThat(ResultMatcher) - Method in class com.jayway.restassured.module.mockmvc.internal.ValidatableMockMvcResponseImpl
 
assertThat(ResultMatcher) - Method in interface com.jayway.restassured.module.mockmvc.response.ValidatableMockMvcResponse
Assert that a ResultMatcher matches the response.

B

basePath(String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
basePath - Static variable in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
The base path that's used by REST assured when making requests.
body() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
body(boolean) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
body(String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
body(byte[]) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
body(Object) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
body(Object, ObjectMapper) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
body(Object, ObjectMapperType) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
body(String) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a String request body (such as e.g.
body(byte[]) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a byte array request body that'll be sent with the request.
body(Object) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify an Object request content that will automatically be serialized to JSON or XML and sent with the request.
body(Object, ObjectMapper) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify an Object request content that will automatically be serialized to JSON or XML and sent with the request using a specific object mapper.
body(Object, ObjectMapperType) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify an Object request content that will automatically be serialized to JSON or XML and sent with the request using a specific object mapper type.
build() - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Build the request specification.

C

com.jayway.restassured.module.mockmvc - package com.jayway.restassured.module.mockmvc
 
com.jayway.restassured.module.mockmvc.config - package com.jayway.restassured.module.mockmvc.config
 
com.jayway.restassured.module.mockmvc.intercept - package com.jayway.restassured.module.mockmvc.intercept
 
com.jayway.restassured.module.mockmvc.internal - package com.jayway.restassured.module.mockmvc.internal
 
com.jayway.restassured.module.mockmvc.response - package com.jayway.restassured.module.mockmvc.response
 
com.jayway.restassured.module.mockmvc.specification - package com.jayway.restassured.module.mockmvc.specification
 
config() - Static method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
 
config(RestAssuredMockMvcConfig) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
config - Static variable in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Define a REST Assured Mock Mvc configuration.
config(RestAssuredMockMvcConfig) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Define a REST Assured Mock Mvc configuration.
contentType(ContentType) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
contentType(String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
contentType(ContentType) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the content type of the request.
contentType(String) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the content type of the request.
cookie(String, Object, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
cookie(Cookie) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
cookie(String, Object, Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a cookie that'll be sent with the request e.g:
cookie(Cookie) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a Cookie to send with the request.
cookies() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
cookies(String, Object, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
cookies(Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
cookies(Cookies) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
cookies(String, Object, Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the cookies that'll be sent with the request.
cookies(Map<String, ?>) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the cookies that'll be sent with the request as Map e.g:
cookies(Cookies) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the cookies that'll be sent with the request as Cookies:

D

delete(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
delete(String, Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
delete(URI) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
delete(URL) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
delete() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
delete(String, Object...) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a DELETE request to a path.
delete(String, Map<String, ?>) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a DELETE request to a path.
delete(URI) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a DELETE request to a uri.
delete(URL) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a DELETE request to a url.
delete() - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a DELETE request to the statically configured base path.

E

everything(boolean) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
everything() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
expect(ResultMatcher) - Method in class com.jayway.restassured.module.mockmvc.internal.ValidatableMockMvcResponseImpl
 
expect(ResultMatcher) - Method in interface com.jayway.restassured.module.mockmvc.response.ValidatableMockMvcResponse
Expect a ResultMatcher to match the response.

F

formParam(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
formParam(String, Collection<?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
formParam(String, Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a form parameter that'll be sent with the request.
formParam(String, Collection<?>) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a multi-value form parameter that'll be sent with the request e.g:
formParams(String, Object, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
formParams(Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
formParams(String, Object, Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the form parameters that'll be sent with the request.
formParams(Map<String, ?>) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the form parameters that'll be sent with the request.

G

get(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
get(String, Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
get(URI) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
get(URL) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
get() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
get(String, Object...) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a GET request to a path.
get(String, Map<String, ?>) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a GET request to a path.
get(URI) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a GET request to a uri.
get(URL) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a GET request to a url.
get() - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a GET request to the statically configured base path.
getBasePath() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getCookies() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getDecoderConfig() - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
 
getEncoderConfig() - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
 
getFormParams() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getInstanceMockMvc() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getInterceptor() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getJsonConfig() - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
 
getLogConfig() - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
 
getMultiParts() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getObjectMapperConfig() - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
 
getParams() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getQueryParams() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getRequestBody() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getRequestContentType() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getRequestHeaders() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getRequestLoggingFilter() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getRestAssuredConfig() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getRestAssuredMockMvcConfig() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getResultHandlers() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
getSessionConfig() - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
 
getXmlConfig() - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
 
given() - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
 

H

hasDefaultConfig() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
head(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
head(String, Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
head(URI) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
head(URL) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
head() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
head(String, Object...) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a HEAD request to a path.
head(String, Map<String, ?>) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a HEAD request to a path.
head(URI) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a HEAD request to a uri.
head(URL) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a HEAD request to a url.
head() - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a HEAD request to the statically configured base path.
header(String, Object, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
header(Header) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
header(String, Object, Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a header that'll be sent with the request e.g:
header(Header) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a Header to send with the request.
headers() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
headers(String, Object, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
headers(Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
headers(Headers) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
headers(String, Object, Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the headers that'll be sent with the request.
headers(Map<String, ?>) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the headers that'll be sent with the request as Map e.g:
headers(Headers) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the headers that'll be sent with the request as Headers, e.g:

I

intercept(MockHttpServletRequestBuilder) - Method in interface com.jayway.restassured.module.mockmvc.intercept.MockHttpServletRequestBuilderInterceptor
 
interceptor(MockHttpServletRequestBuilderInterceptor) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
interceptor(MockHttpServletRequestBuilderInterceptor) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Intercept the MockHttpServletRequestBuilder created by REST Assured before it's used to perform the request.

J

jsonConfig(JsonConfig) - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
Set the Json config.

L

log() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
log(LogDetail) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Enabled logging with the specified log detail.
log() - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Returns the MockMvcRequestLogSpecification that allows you to log different parts of the MockMvcRequestSpecification.
logConfig(LogConfig) - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
Set the Log config.

M

MockHttpServletRequestBuilderInterceptor - Interface in com.jayway.restassured.module.mockmvc.intercept
Implement this interface to intercept the MockHttpServletRequestBuilder before it's built.
mockMvc(MockMvc) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
mockMvc - Static variable in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Set a MockMvc instance that REST Assured will use when making requests unless overwritten by a MockMvcRequestSpecification.
mockMvc(MockMvc) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Provide a MockMvc instance to that REST Assured will use when making this request.
MockMvcRequestLogSpecification - Interface in com.jayway.restassured.module.mockmvc.specification
The request logging specification
MockMvcRequestLogSpecificationImpl - Class in com.jayway.restassured.module.mockmvc.internal
 
MockMvcRequestLogSpecificationImpl(MockMvcRequestSpecificationImpl) - Constructor for class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
MockMvcRequestSender - Interface in com.jayway.restassured.module.mockmvc.specification
Options available when sending a request using Mock MVC module.
MockMvcRequestSpecBuilder - Class in com.jayway.restassured.module.mockmvc.specification
You can use the builder to construct a request specification.
MockMvcRequestSpecBuilder() - Constructor for class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
 
MockMvcRequestSpecification - Interface in com.jayway.restassured.module.mockmvc.specification
Allows you to specify how the request will look like.
MockMvcRequestSpecificationImpl - Class in com.jayway.restassured.module.mockmvc.internal
 
MockMvcRequestSpecificationImpl(MockMvc, RestAssuredMockMvcConfig, List<ResultHandler>, String, MockMvcRequestSpecification, ResponseSpecification) - Constructor for class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
MockMvcResponse - Interface in com.jayway.restassured.module.mockmvc.response
The response of a request made by REST Assured Mock MVC.
MockMvcRestAssuredResponseImpl - Class in com.jayway.restassured.module.mockmvc.internal
 
MockMvcRestAssuredResponseImpl(ResultActions) - Constructor for class com.jayway.restassured.module.mockmvc.internal.MockMvcRestAssuredResponseImpl
 
multiPart(File) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(String, File) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(String, File, String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(String, Object) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(String, Object, String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(String, String, byte[]) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(String, String, byte[], String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(String, String, InputStream) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(String, String, InputStream, String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(String, String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(String, String, String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
multiPart(File) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a file to upload to the server using multi-part form data uploading.
multiPart(String, File) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a file to upload to the server using multi-part form data uploading with a specific control name.
multiPart(String, File, String) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a file to upload to the server using multi-part form data uploading with a specific control name and mime-type.
multiPart(String, Object) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify an object that will be serialized to JSON and uploaded to the server using multi-part form data uploading with a specific control name.
multiPart(String, Object, String) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify an object that will be serialized and uploaded to the server using multi-part form data uploading with a specific control name.
multiPart(String, String, byte[]) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a byte-array to upload to the server using multi-part form data.
multiPart(String, String, byte[], String) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a byte-array to upload to the server using multi-part form data.
multiPart(String, String, InputStream) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify an inputstream to upload to the server using multi-part form data.
multiPart(String, String, InputStream, String) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify an inputstream to upload to the server using multi-part form data.
multiPart(String, String) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a string to send to the server using multi-part form data.
multiPart(String, String, String) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a string to send to the server using multi-part form data with a specific mime-type.

N

newConfig() - Static method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
 

O

objectMapperConfig(ObjectMapperConfig) - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
Set the object mapper config.
options(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
options(String, Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
options(URI) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
options(URL) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
options() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
options(String, Object...) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a OPTIONS request to a path.
options(String, Map<String, ?>) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a OPTIONS request to a path.
options(URI) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a OPTIONS request to a uri.
options(URL) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a OPTIONS request to a url.
options() - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a OPTIONS request to the statically configured base path.

P

param(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
param(String, Collection<?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
param(String, Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a parameter that'll be sent with the request e.g:
param(String, Collection<?>) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a multi-value parameter that'll be sent with the request e.g:
parameters() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
parameters() - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestLogSpecification
Logs only the parameters of the request.
params() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestLogSpecificationImpl
 
params(String, Object, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
params(Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
params() - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestLogSpecification
Logs only the parameters of the request.
params(String, Object, Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the parameters that'll be sent with the request.
params(Map<String, ?>) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the parameters that'll be sent with the request as Map e.g:
patch(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
patch(String, Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
patch(URI) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
patch(URL) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
patch() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
patch(String, Object...) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a PATCH request to a path.
patch(String, Map<String, ?>) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a PATCH request to a path.
patch(URI) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a PATCH request to a uri.
patch(URL) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a PATCH request to a url.
patch() - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a PATCH request to the statically configured base path.
post(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
post(String, Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
post(URI) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
post(URL) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
post() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
post(String, Object...) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a POST request to a path.
post(String, Map<String, ?>) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a POST request to a path.
post(URI) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a POST request to a uri.
post(URL) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a POST request to a url.
post() - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a POST request to the statically configured base path.
put(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
put(String, Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
put(URI) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
put(URL) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
put() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
put(String, Object...) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a PUT request to a path.
put(URI) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a PUT request to a uri.
put(URL) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a PUT request to a url.
put() - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Perform a PUT request to the statically configured base path.

Q

queryParam(String, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
queryParam(String, Collection<?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
queryParam(String, Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a query parameter that'll be sent with the request.
queryParam(String, Collection<?>) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify a multi-value query parameter that'll be sent with the request e.g:
queryParams(String, Object, Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
queryParams(Map<String, ?>) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
queryParams(String, Object, Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the query parameters that'll be sent with the request.
queryParams(Map<String, ?>) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Specify the query parameters that'll be sent with the request.

R

requestSpecification - Static variable in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Specify a default request specification that will be sent with each request.
reset() - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Reset all static configurations to their default values.
responseSpecification - Static variable in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Specify a default response specification that will be sent with each request.
RestAssuredMockMvc - Class in com.jayway.restassured.module.mockmvc
The Spring MVC module's equivalent of RestAssured.
RestAssuredMockMvc() - Constructor for class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
 
RestAssuredMockMvcConfig - Class in com.jayway.restassured.module.mockmvc.config
Main configuration for REST Assured Mock MVC that allows you to configure advanced settings.
RestAssuredMockMvcConfig() - Constructor for class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
Create a new RestAssuredConfiguration with the default configurations.
RestAssuredMockMvcConfig(LogConfig, EncoderConfig, DecoderConfig, SessionConfig, ObjectMapperConfig, JsonConfig, XmlConfig) - Constructor for class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
Create a new RestAssuredMockMvcConfig with the supplied configs.
resultHandlers(ResultHandler, ResultHandler...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
resultHandlers(ResultHandler, ResultHandler...) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Assign one or more ResultHandler that'll be executes after a request has been made.
resultHandlers() - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
 
resultHandlers(ResultHandler, ResultHandler...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Add one or more result handlers.

S

sessionConfig(SessionConfig) - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
Set the session config.
sessionId(String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
sessionId(String, String) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
sessionId(String) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Set the session id for this request.
sessionId(String, String) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Set the session id name and value for this request.
set() - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
Syntactic sugar.
setBasePath(String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Set the basePath property of the MockMvcRequestSpecBuilder instead of using static field RestAssuredMockMvc.basePath.
setBody(String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify a String request body (such as e.g.
setBody(byte[]) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify a byte array request body to be sent with the request.
setBody(Object) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify an Object request content that will automatically be serialized to JSON or XML and sent with the request.
setBody(Object, ObjectMapper) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify an Object request content that will automatically be serialized to JSON or XML and sent with the request using a specific object mapper.
setBody(Object, ObjectMapperType) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify an Object request content that will automatically be serialized to JSON or XML and sent with the request using a specific object mapper type.
setConfig(RestAssuredMockMvcConfig) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Define a configuration for redirection settings and http client parameters.
setContentType(ContentType) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify the content type of the request.
setContentType(String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Specify the content type of the request as string.
setMockHttpServletRequestBuilderInterceptor(MockHttpServletRequestBuilderInterceptor) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
The mock mvc instance to use.
setMockMvc(MockMvc) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
The mock mvc instance to use.
setRequestLoggingFilter(RequestLoggingFilter) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
setSessionId(String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Set the session id for this request.
setSessionId(String, String) - Method in class com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecBuilder
Set the session id name and value for this request.
spec(MockMvcRequestSpecification) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
spec(MockMvcRequestSpecification) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Add request data from a pre-defined specification.
standaloneSetup(Object...) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
standaloneSetup(Object...) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Build a MockMvc by registering one or more @Controller's instances and configuring Spring MVC infrastructure programmatically.
standaloneSetup(Object...) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Build a MockMvc by registering one or more @Controller's instances and configuring Spring MVC infrastructure programmatically.

T

then() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRestAssuredResponseImpl
 
then() - Method in interface com.jayway.restassured.module.mockmvc.response.MockMvcResponse
Returns a validatable response that's lets you validate the response.

V

ValidatableMockMvcResponse - Interface in com.jayway.restassured.module.mockmvc.response
A validatable response of a request made by REST Assured Mock Mvc.
ValidatableMockMvcResponseImpl - Class in com.jayway.restassured.module.mockmvc.internal
 
ValidatableMockMvcResponseImpl(ResultActions, String, ResponseParserRegistrar, RestAssuredConfig, MockMvcResponse, ExtractableResponse<MockMvcResponse>) - Constructor for class com.jayway.restassured.module.mockmvc.internal.ValidatableMockMvcResponseImpl
 

W

webAppContextSetup(WebApplicationContext) - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
webAppContextSetup(WebApplicationContext) - Static method in class com.jayway.restassured.module.mockmvc.RestAssuredMockMvc
Build a MockMvc using the given, fully initialized, i.e.
webAppContextSetup(WebApplicationContext) - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Build a MockMvc using the given, fully initialized, i.e.
when() - Method in class com.jayway.restassured.module.mockmvc.internal.MockMvcRequestSpecificationImpl
 
when() - Method in interface com.jayway.restassured.module.mockmvc.specification.MockMvcRequestSpecification
Call this method when you're done setting up the request specification.
with() - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
Syntactic sugar.

X

xmlConfig(XmlConfig) - Method in class com.jayway.restassured.module.mockmvc.config.RestAssuredMockMvcConfig
Set the Xml config.
A B C D E F G H I J L M N O P Q R S T V W X 

Copyright © 2010–2014. All rights reserved.