Uses of Interface
io.vertx.ext.web.handler.SessionHandler
-
Packages that use SessionHandler Package Description io.vertx.ext.web.handler io.vertx.reactivex.ext.web.handler io.vertx.rxjava3.ext.web.handler -
-
Uses of SessionHandler in io.vertx.ext.web.handler
Methods in io.vertx.ext.web.handler that return SessionHandler Modifier and Type Method Description static SessionHandler
SessionHandler. create(SessionStore sessionStore)
Create a session handlerSessionHandler
SessionHandler. setCookieHttpOnlyFlag(boolean httpOnly)
Sets whether the 'HttpOnly' flag should be set for the session cookie.SessionHandler
SessionHandler. setCookieless(boolean cookieless)
Use sessions based on url paths instead of cookies.SessionHandler
SessionHandler. setCookieMaxAge(long cookieMaxAge)
Set a Cookie max-age to the session cookie.SessionHandler
SessionHandler. setCookieSameSite(CookieSameSite policy)
Set the session cookie SameSite policy to use.SessionHandler
SessionHandler. setCookieSecureFlag(boolean secure)
Sets whether the 'secure' flag should be set for the session cookie.SessionHandler
SessionHandler. setLazySession(boolean lazySession)
Use a lazy session creation mechanism.SessionHandler
SessionHandler. setMinLength(int minLength)
Set expected session id minimum length.SessionHandler
SessionHandler. setNagHttps(boolean nag)
Set whether a nagging log warning should be written if the session handler is accessed over HTTP, not HTTPSSessionHandler
SessionHandler. setSessionCookieName(String sessionCookieName)
Set the session cookie nameSessionHandler
SessionHandler. setSessionCookiePath(String sessionCookiePath)
Set the session cookie pathSessionHandler
SessionHandler. setSessionTimeout(long timeout)
Set the session timeoutSessionHandler
SessionHandler. setSigningSecret(String secret)
Set signing secret for the session cookie. -
Uses of SessionHandler in io.vertx.reactivex.ext.web.handler
Methods in io.vertx.reactivex.ext.web.handler that return SessionHandler Modifier and Type Method Description SessionHandler
SessionHandler. getDelegate()
Methods in io.vertx.reactivex.ext.web.handler with parameters of type SessionHandler Modifier and Type Method Description static SessionHandler
SessionHandler. newInstance(SessionHandler arg)
Constructors in io.vertx.reactivex.ext.web.handler with parameters of type SessionHandler Constructor Description SessionHandler(SessionHandler delegate)
-
Uses of SessionHandler in io.vertx.rxjava3.ext.web.handler
Methods in io.vertx.rxjava3.ext.web.handler that return SessionHandler Modifier and Type Method Description SessionHandler
SessionHandler. getDelegate()
Methods in io.vertx.rxjava3.ext.web.handler with parameters of type SessionHandler Modifier and Type Method Description static SessionHandler
SessionHandler. newInstance(SessionHandler arg)
Constructors in io.vertx.rxjava3.ext.web.handler with parameters of type SessionHandler Constructor Description SessionHandler(SessionHandler delegate)
-