Uses of Class
javax.servlet.SessionTrackingMode
-
Packages that use SessionTrackingMode Package Description javax.servlet -
-
Uses of SessionTrackingMode in javax.servlet
Methods in javax.servlet that return SessionTrackingMode Modifier and Type Method Description static SessionTrackingMode
SessionTrackingMode. valueOf(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 javax.servlet that return types with arguments of type SessionTrackingMode Modifier and Type Method Description Set<SessionTrackingMode>
ServletContext. getDefaultSessionTrackingModes()
Gets the session tracking modes that are supported by default for this ServletContext.Set<SessionTrackingMode>
ServletContext. getEffectiveSessionTrackingModes()
Gets the session tracking modes that are in effect for this ServletContext.Method parameters in javax.servlet with type arguments of type SessionTrackingMode Modifier and Type Method Description void
ServletContext. setSessionTrackingModes(Set<SessionTrackingMode> sessionTrackingModes)
Sets the session tracking modes that are to become effective for this ServletContext.
-