Uses of Class
org.mockserver.model.NottableString

Packages that use NottableString
org.mockserver.client.serialization.deserializers.string   
org.mockserver.client.serialization.model   
org.mockserver.client.serialization.serializers.string   
org.mockserver.collections   
org.mockserver.matchers   
org.mockserver.model   
 

Uses of NottableString in org.mockserver.client.serialization.deserializers.string
 

Methods in org.mockserver.client.serialization.deserializers.string that return NottableString
 NottableString NottableStringDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser jp, com.fasterxml.jackson.databind.DeserializationContext ctxt)
           
 

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

Methods in org.mockserver.client.serialization.model that return NottableString
 NottableString HttpRequestDTO.getMethod()
           
 NottableString HttpRequestDTO.getPath()
           
 

Methods in org.mockserver.client.serialization.model with parameters of type NottableString
 HttpRequestDTO HttpRequestDTO.setMethod(NottableString method)
           
 HttpRequestDTO HttpRequestDTO.setPath(NottableString path)
           
 

Uses of NottableString in org.mockserver.client.serialization.serializers.string
 

Methods in org.mockserver.client.serialization.serializers.string with parameters of type NottableString
 void NottableStringSerializer.serialize(NottableString nottableString, com.fasterxml.jackson.core.JsonGenerator jgen, com.fasterxml.jackson.databind.SerializerProvider provider)
           
 

Uses of NottableString in org.mockserver.collections
 

Methods in org.mockserver.collections that return types with arguments of type NottableString
 Set<Map.Entry<NottableString,String>> CaseInsensitiveRegexMultiMap.entrySet()
           
 Set<NottableString> CaseInsensitiveRegexMultiMap.keySet()
           
 

Methods in org.mockserver.collections with parameters of type NottableString
 boolean CaseInsensitiveRegexMultiMap.containsKeyValue(NottableString key, String value)
           
 boolean CaseInsensitiveRegexHashMap.containsKeyValue(NottableString key, String value)
           
 List<String> CaseInsensitiveRegexMultiMap.put(NottableString key, List<String> values)
           
 String CaseInsensitiveRegexMultiMap.put(NottableString key, String value)
           
 List<String> CaseInsensitiveRegexMultiMap.removeAll(NottableString key)
           
 

Method parameters in org.mockserver.collections with type arguments of type NottableString
 void CaseInsensitiveRegexMultiMap.putAll(Map<? extends NottableString,? extends String> map)
           
 

Uses of NottableString in org.mockserver.matchers
 

Methods in org.mockserver.matchers with parameters of type NottableString
 boolean RegexStringMatcher.matches(NottableString matched)
           
 boolean ExactStringMatcher.matches(NottableString matched)
           
 

Constructors in org.mockserver.matchers with parameters of type NottableString
ExactStringMatcher(NottableString matcher)
           
RegexStringMatcher(NottableString matcher)
           
 

Uses of NottableString in org.mockserver.model
 

Methods in org.mockserver.model that return NottableString
 NottableString HttpRequest.getMethod()
           
 NottableString HttpRequest.getPath()
           
static NottableString NottableString.not(String value)
           
static NottableString NottableString.string(String value)
           
static NottableString NottableString.string(String value, Boolean not)
           
 

Methods in org.mockserver.model with parameters of type NottableString
 HttpRequest HttpRequest.withMethod(NottableString method)
          The HTTP method all method except a specific value using the "not" operator, for example this allows operations such as not("GET")
 HttpRequest HttpRequest.withPath(NottableString path)
          The path to not match on for example not("/some_mocked_path") with match any path not equal to "/some_mocked_path", the servlet context path is ignored for matching and should not be specified here regex values are also supported such as not(".*_path"), see http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html for full details of the supported regex syntax
 



Copyright © 2015. All rights reserved.