Uses of Class
org.eclipse.jetty.http.HttpCookie
-
Packages that use HttpCookie Package Description org.eclipse.jetty.http Jetty Http : Tools for Http processingorg.eclipse.jetty.server Jetty Server : Core Server APIorg.eclipse.jetty.server.session Jetty Server : Session Management Implementations -
-
Uses of HttpCookie in org.eclipse.jetty.http
Methods in org.eclipse.jetty.http that return HttpCookie Modifier and Type Method Description HttpCookie
HttpCookie.SetCookieHttpField. getHttpCookie()
Constructors in org.eclipse.jetty.http with parameters of type HttpCookie Constructor Description SetCookieHttpField(HttpCookie cookie, CookieCompliance compliance)
-
Uses of HttpCookie in org.eclipse.jetty.server
Methods in org.eclipse.jetty.server with parameters of type HttpCookie Modifier and Type Method Description void
Response. addCookie(HttpCookie cookie)
void
Response. replaceCookie(HttpCookie cookie)
Replace (or add) a cookie. -
Uses of HttpCookie in org.eclipse.jetty.server.session
Methods in org.eclipse.jetty.server.session that return HttpCookie Modifier and Type Method Description HttpCookie
SessionHandler. access(javax.servlet.http.HttpSession session, boolean secure)
Called by theSessionHandler
when a session is first accessed by a request.HttpCookie
SessionHandler. getSessionCookie(javax.servlet.http.HttpSession session, java.lang.String contextPath, boolean requestIsSecure)
A session cookie is marked as secure IFF any of the following conditions are true: SessionCookieConfig.setSecure == true SessionCookieConfig.setSecure == false && _secureRequestOnly==true && request is HTTPS According to SessionCookieConfig javadoc, case 1 can be used when: "...
-