Uses of Class
org.mockserver.model.Cookie
-
Packages that use Cookie Package Description org.mockserver.model org.mockserver.serialization.java org.mockserver.serialization.model -
-
Uses of Cookie in org.mockserver.model
Methods in org.mockserver.model that return Cookie Modifier and Type Method Description CookieCookies. build(NottableString name, NottableString value)static CookieCookie. cookie(String name, String value)static CookieCookie. cookie(NottableString name, NottableString value)Methods in org.mockserver.model that return types with arguments of type Cookie Modifier and Type Method Description List<Cookie>HttpObject. getCookieList()List<Cookie>HttpRequest. getCookieList()List<Cookie>HttpResponse. getCookieList()Methods in org.mockserver.model with parameters of type Cookie Modifier and Type Method Description booleanHttpResponse. cookieHeadeDoesNotAlreadyExists(Cookie cookieValue)THttpObject. withCookie(Cookie cookie)HttpRequestHttpRequest. withCookie(Cookie cookie)Adds one cookie to match on as a Cookie object where the cookie 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)HttpResponseHttpResponse. withCookie(Cookie cookie)Add cookie to return as Set-Cookie headerTHttpObject. withCookies(Cookie... cookies)HttpRequestHttpRequest. withCookies(Cookie... cookies)The cookies to match on as a varags Cookie objects where the values or keys of each cookie 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)HttpResponseHttpResponse. withCookies(Cookie... cookies)The cookies to return as Set-Cookie headers as a varargs of Cookie objectsMethod parameters in org.mockserver.model with type arguments of type Cookie Modifier and Type Method Description THttpObject. withCookies(List<Cookie> cookies)HttpRequestHttpRequest. withCookies(List<Cookie> cookies)The cookies to match on as a list of Cookie objects where the values or keys of each cookie 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)HttpResponseHttpResponse. withCookies(List<Cookie> cookies)The cookies to return as Set-Cookie headers as a list of Cookie objectsConstructors in org.mockserver.model with parameters of type Cookie Constructor Description Cookies(Cookie... cookies)Constructor parameters in org.mockserver.model with type arguments of type Cookie Constructor Description Cookies(List<Cookie> cookies) -
Uses of Cookie in org.mockserver.serialization.java
Methods in org.mockserver.serialization.java with parameters of type Cookie Modifier and Type Method Description StringCookieToJavaSerializer. serialize(int numberOfSpacesToIndent, Cookie cookie)StringCookieToJavaSerializer. serializeAsJava(int numberOfSpacesToIndent, Cookie... object)Method parameters in org.mockserver.serialization.java with type arguments of type Cookie Modifier and Type Method Description StringCookieToJavaSerializer. serializeAsJava(int numberOfSpacesToIndent, List<Cookie> cookies) -
Uses of Cookie in org.mockserver.serialization.model
Methods in org.mockserver.serialization.model that return Cookie Modifier and Type Method Description CookieCookieDTO. buildObject()Constructors in org.mockserver.serialization.model with parameters of type Cookie Constructor Description CookieDTO(Cookie cookie)
-