Uses of Class
org.mockserver.model.Parameter
-
Packages that use Parameter Package Description org.mockserver.model org.mockserver.serialization.java org.mockserver.serialization.model -
-
Uses of Parameter in org.mockserver.model
Methods in org.mockserver.model that return Parameter Modifier and Type Method Description Parameter
Parameters. build(NottableString name, Collection<NottableString> values)
static Parameter
Parameter. param(String name, String... value)
static Parameter
Parameter. param(String name, Collection<String> value)
static Parameter
Parameter. param(NottableString name, Collection<NottableString> value)
static Parameter
Parameter. param(NottableString name, NottableString... value)
Methods in org.mockserver.model that return types with arguments of type Parameter Modifier and Type Method Description List<Parameter>
HttpRequest. getQueryStringParameterList()
Methods in org.mockserver.model with parameters of type Parameter Modifier and Type Method Description static ParameterBody
ParameterBody. params(Parameter... parameters)
HttpRequest
HttpRequest. withQueryStringParameter(Parameter parameter)
Adds one query string parameter to match on as a Parameter object where the parameter values list can be a list of strings or regular expressions (for more details of the supported regex syntax see http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html)HttpRequest
HttpRequest. withQueryStringParameters(Parameter... parameters)
The query string parameters to match on as a varags Parameter objects where the values or keys of each parameter can be either a string or a regex (for more details of the supported regex syntax see http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html)Method parameters in org.mockserver.model with type arguments of type Parameter Modifier and Type Method Description static ParameterBody
ParameterBody. params(List<Parameter> parameters)
HttpRequest
HttpRequest. withQueryStringParameters(List<Parameter> parameters)
The query string parameters to match on as a list of Parameter objects where the values or keys of each parameter can be either a string or a regex (for more details of the supported regex syntax see http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html)Constructors in org.mockserver.model with parameters of type Parameter Constructor Description ParameterBody(Parameter... parameters)
Parameters(Parameter... parameters)
Constructor parameters in org.mockserver.model with type arguments of type Parameter Constructor Description ParameterBody(List<Parameter> parameters)
Parameters(List<Parameter> parameters)
-
Uses of Parameter in org.mockserver.serialization.java
Methods in org.mockserver.serialization.java with parameters of type Parameter Modifier and Type Method Description String
ParameterToJavaSerializer. serialize(int numberOfSpacesToIndent, Parameter parameter)
String
ParameterToJavaSerializer. serializeAsJava(int numberOfSpacesToIndent, Parameter... object)
Method parameters in org.mockserver.serialization.java with type arguments of type Parameter Modifier and Type Method Description String
ParameterToJavaSerializer. serializeAsJava(int numberOfSpacesToIndent, List<Parameter> parameters)
-
Uses of Parameter in org.mockserver.serialization.model
Methods in org.mockserver.serialization.model that return Parameter Modifier and Type Method Description Parameter
ParameterDTO. buildObject()
Constructors in org.mockserver.serialization.model with parameters of type Parameter Constructor Description ParameterDTO(Parameter parameter)
-