- 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.
- 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
-
- 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.
- 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.
- 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.