Uses of Class
jakarta.servlet.SessionTrackingMode
-
Packages that use SessionTrackingMode Package Description jakarta.servlet The jakarta.servlet package contains a number of classes and interfaces that describe and define the contracts between a servlet class and the runtime environment provided for an instance of such a class by a conforming servlet container.org.apache.jasper.servlet -
-
Uses of SessionTrackingMode in jakarta.servlet
Methods in jakarta.servlet that return SessionTrackingMode Modifier and Type Method Description static SessionTrackingModeSessionTrackingMode. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SessionTrackingMode[]SessionTrackingMode. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in jakarta.servlet that return types with arguments of type SessionTrackingMode Modifier and Type Method Description java.util.Set<SessionTrackingMode>ServletContext. getDefaultSessionTrackingModes()Obtains the default session tracking modes for this web application.java.util.Set<SessionTrackingMode>ServletContext. getEffectiveSessionTrackingModes()Obtains the currently enabled session tracking modes for this web application.Method parameters in jakarta.servlet with type arguments of type SessionTrackingMode Modifier and Type Method Description voidServletContext. setSessionTrackingModes(java.util.Set<SessionTrackingMode> sessionTrackingModes)Configures the available session tracking modes for this web application. -
Uses of SessionTrackingMode in org.apache.jasper.servlet
Methods in org.apache.jasper.servlet that return types with arguments of type SessionTrackingMode Modifier and Type Method Description java.util.Set<SessionTrackingMode>JspCServletContext. getDefaultSessionTrackingModes()java.util.Set<SessionTrackingMode>JspCServletContext. getEffectiveSessionTrackingModes()Method parameters in org.apache.jasper.servlet with type arguments of type SessionTrackingMode Modifier and Type Method Description voidJspCServletContext. setSessionTrackingModes(java.util.Set<SessionTrackingMode> sessionTrackingModes)
-