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 ParameterParameters. build(NottableString name, Collection<NottableString> values)static ParameterParameter. param(String name, String... value)static ParameterParameter. param(String name, Collection<String> value)static ParameterParameter. param(NottableString name, Collection<NottableString> value)static ParameterParameter. 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 ParameterBodyParameterBody. params(Parameter... parameters)HttpRequestHttpRequest. 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)HttpRequestHttpRequest. 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 ParameterBodyParameterBody. params(List<Parameter> parameters)HttpRequestHttpRequest. 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 StringParameterToJavaSerializer. serialize(int numberOfSpacesToIndent, Parameter parameter)StringParameterToJavaSerializer. serializeAsJava(int numberOfSpacesToIndent, Parameter... object)Method parameters in org.mockserver.serialization.java with type arguments of type Parameter Modifier and Type Method Description StringParameterToJavaSerializer. 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 ParameterParameterDTO. buildObject()Constructors in org.mockserver.serialization.model with parameters of type Parameter Constructor Description ParameterDTO(Parameter parameter)
-