Uses of Class
org.springframework.restdocs.operation.Parameters
Packages that use Parameters
Package
Description
Operation API that describes a request that was sent and the response that was received
when calling a RESTful API.
-
Uses of Parameters in org.springframework.restdocs.operation
Methods in org.springframework.restdocs.operation that return ParametersModifier and TypeMethodDescriptionOperationRequest.getParameters()
Returns the request's parameters.Parameters.getUniqueParameters
(URI uri) Returns a newParameters
containing only the parameters that do no appear in the query string of the givenuri
.Parses the query string of the givenuri
and returns the resultingParameters
.Methods in org.springframework.restdocs.operation with parameters of type ParametersModifier and TypeMethodDescriptionOperationRequestFactory.create
(URI uri, org.springframework.http.HttpMethod method, byte[] content, org.springframework.http.HttpHeaders headers, Parameters parameters, Collection<OperationRequestPart> parts) Creates a newOperationRequest
.OperationRequestFactory.create
(URI uri, org.springframework.http.HttpMethod method, byte[] content, org.springframework.http.HttpHeaders headers, Parameters parameters, Collection<OperationRequestPart> parts, Collection<RequestCookie> cookies) Creates a newOperationRequest
.OperationRequestFactory.createFrom
(OperationRequest original, Parameters newParameters) Creates a newOperationRequest
based on the givenoriginal
but with the givennewParameters
applied.