Package org.eclipse.jetty.server
Class CookieCutter
- java.lang.Object
-
- org.eclipse.jetty.server.CookieCutter
-
@Deprecated(since="2021-05-27") public class CookieCutter extends java.lang.Object
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.Cookie parserOptimized stateful
Cookie
header parser. Does not supportSet-Cookie
header parsing.Cookies fields are added with the
addCookieField(String)
method and parsed on the next subsequent call togetCookies()
.If the added fields are identical to those last added (as strings), then the cookies are not re parsed.
-
-
Constructor Summary
Constructors Constructor Description CookieCutter()
Deprecated.CookieCutter(CookieCompliance compliance)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addCookieField(java.lang.String f)
Deprecated.Cookie[]
getCookies()
Deprecated.void
reset()
Deprecated.void
setCookies(Cookie[] cookies)
Deprecated.
-
-
-
Constructor Detail
-
CookieCutter
public CookieCutter()
Deprecated.
-
CookieCutter
public CookieCutter(CookieCompliance compliance)
Deprecated.
-
-