Uses of Class
org.mockserver.model.Parameter

Packages that use Parameter
org.mockserver.client.serialization.java   
org.mockserver.client.serialization.model   
org.mockserver.matchers   
org.mockserver.model   
 

Uses of Parameter in org.mockserver.client.serialization.java
 

Methods in org.mockserver.client.serialization.java with parameters of type Parameter
 String ParameterToJavaSerializer.serializeAsJava(int numberOfSpacesToIndent, Parameter... object)
           
 String ParameterToJavaSerializer.serializeAsJava(int numberOfSpacesToIndent, Parameter parameter)
           
 

Method parameters in org.mockserver.client.serialization.java with type arguments of type Parameter
 String ParameterToJavaSerializer.serializeAsJava(int numberOfSpacesToIndent, List<Parameter> parameters)
           
 

Uses of Parameter in org.mockserver.client.serialization.model
 

Methods in org.mockserver.client.serialization.model that return Parameter
 Parameter ParameterDTO.buildObject()
           
 

Constructors in org.mockserver.client.serialization.model with parameters of type Parameter
ParameterDTO(Parameter parameter)
           
 

Uses of Parameter in org.mockserver.matchers
 

Constructor parameters in org.mockserver.matchers with type arguments of type Parameter
ParameterStringMatcher(List<Parameter> parameters)
           
 

Uses of Parameter in org.mockserver.model
 

Methods in org.mockserver.model that return Parameter
static Parameter Parameter.param(NottableString name, Collection<NottableString> value)
           
static Parameter Parameter.param(NottableString name, NottableString... value)
           
static Parameter Parameter.param(String name, Collection<String> value)
           
static Parameter Parameter.param(String name, String... value)
           
 

Methods in org.mockserver.model that return types with arguments of type Parameter
 List<Parameter> HttpRequest.getQueryStringParameters()
           
 List<Parameter> ParameterBody.getValue()
           
 

Methods in org.mockserver.model with parameters of type Parameter
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
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
ParameterBody(Parameter... parameters)
           
 

Constructor parameters in org.mockserver.model with type arguments of type Parameter
ParameterBody(List<Parameter> parameters)
           
 



Copyright © 2016. All rights reserved.