Package | Description |
---|---|
io.undertow.servlet.api | |
io.undertow.servlet.spec | |
javax.servlet |
The javax.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.
|
Modifier and Type | Method and Description |
---|---|
Set<SessionTrackingMode> |
ServletSessionConfig.getSessionTrackingModes() |
Modifier and Type | Method and Description |
---|---|
ServletSessionConfig |
ServletSessionConfig.setSessionTrackingModes(Set<SessionTrackingMode> sessionTrackingModes) |
Modifier and Type | Method and Description |
---|---|
Set<SessionTrackingMode> |
ServletContextImpl.getDefaultSessionTrackingModes() |
Set<SessionTrackingMode> |
ServletContextImpl.getEffectiveSessionTrackingModes() |
Modifier and Type | Method and Description |
---|---|
void |
ServletContextImpl.setDefaultSessionTrackingModes(HashSet<SessionTrackingMode> sessionTrackingModes) |
void |
ServletContextImpl.setSessionTrackingModes(Set<SessionTrackingMode> sessionTrackingModes) |
Modifier and Type | Method and 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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
void |
ServletContext.setSessionTrackingModes(Set<SessionTrackingMode> sessionTrackingModes)
Sets the session tracking modes that are to become effective for this
ServletContext.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.