Uses of Class
org.mockserver.model.Cookie
Packages that use Cookie
Package
Description
-
Uses of Cookie in org.mockserver.model
Methods in org.mockserver.model that return CookieModifier and TypeMethodDescriptionCookies.build(NottableString name, NottableString value) static Cookiestatic CookieCookie.cookie(NottableString name, String value) static CookieCookie.cookie(NottableString name, NottableString value) static CookieCookie.optionalCookie(String name, String value) static CookieCookie.optionalCookie(String name, NottableString value) static CookieCookie.schemaCookie(String name, String value) Methods in org.mockserver.model that return types with arguments of type CookieModifier and TypeMethodDescriptionHttpMessage.getCookieList()HttpRequest.getCookieList()HttpResponse.getCookieList()Methods in org.mockserver.model with parameters of type CookieModifier and TypeMethodDescriptionbooleanHttpResponse.cookieHeaderDoesNotAlreadyExists(Cookie cookieValue) static CookiesHttpMessage.withCookie(Cookie cookie) HttpRequest.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/8/docs/api/java/util/regex/Pattern.html)HttpResponse.withCookie(Cookie cookie) Add cookie to return as Set-Cookie headerHttpMessage.withCookies(Cookie... cookies) HttpRequest.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/8/docs/api/java/util/regex/Pattern.html)HttpResponse.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 CookieModifier and TypeMethodDescriptionHttpMessage.withCookies(List<Cookie> cookies) HttpRequest.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/8/docs/api/java/util/regex/Pattern.html)HttpResponse.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 CookieConstructor parameters in org.mockserver.model with type arguments of type Cookie -
Uses of Cookie in org.mockserver.serialization.java
Methods in org.mockserver.serialization.java with parameters of type CookieModifier and TypeMethodDescriptionCookieToJavaSerializer.serializeAsJava(int numberOfSpacesToIndent, Cookie... object) Method parameters in org.mockserver.serialization.java with type arguments of type CookieModifier and TypeMethodDescriptionCookieToJavaSerializer.serializeAsJava(int numberOfSpacesToIndent, List<Cookie> cookies) -
Uses of Cookie in org.mockserver.serialization.model
Methods in org.mockserver.serialization.model that return CookieConstructors in org.mockserver.serialization.model with parameters of type Cookie