Uses of Class
org.mockserver.model.Format
-
Packages that use Format Package Description org.mockserver.client org.mockserver.model -
-
Uses of Format in org.mockserver.client
Methods in org.mockserver.client with parameters of type Format Modifier and Type Method Description String
MockServerClient. retrieveActiveExpectations(HttpRequest httpRequest, Format format)
Retrieve the active expectations match the httpRequest parameter, use null for the parameter to retrieve all expectationsString
MockServerClient. retrieveRecordedExpectations(HttpRequest httpRequest, Format format)
Retrieve the request-response combinations that have been recorded as a list of expectations, only those that match the httpRequest parameter are returned, use null to retrieve all requestsString
MockServerClient. retrieveRecordedRequests(HttpRequest httpRequest, Format format)
Retrieve the recorded requests that match the httpRequest parameter, use null for the parameter to retrieve all requestsString
MockServerClient. retrieveRecordedRequestsAndResponses(HttpRequest httpRequest, Format format)
Retrieve the recorded requests that match the httpRequest parameter, use null for the parameter to retrieve all requests -
Uses of Format in org.mockserver.model
Methods in org.mockserver.model that return Format Modifier and Type Method Description static Format
Format. valueOf(String name)
Returns the enum constant of this type with the specified name.static Format[]
Format. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-