Package | Description |
---|---|
io.undertow.servlet.core | |
io.undertow.servlet.spec | |
io.undertow.servlet.util | |
javax.servlet.http |
The javax.servlet.http package contains a number of classes and interfaces
that describe and define the contracts between a servlet class
running under the HTTP protocol and the runtime environment provided
for an instance of such a class by a conforming servlet container.
|
javax.servlet.jsp |
Classes and interfaces for the Core JSP 2.1 API.
|
javax.servlet.jsp.jstl.core | |
javax.xml.rpc.server | |
org.jboss.resteasy.core | |
org.jboss.resteasy.util | |
org.jboss.weld.context.http | |
org.picketlink.identity.federation.bindings.wildfly.sp | |
org.picketlink.identity.federation.core.saml.workflow | |
org.picketlink.identity.federation.web.handlers.saml2 |
Modifier and Type | Method and Description |
---|---|
void |
ApplicationListeners.httpSessionAttributeAdded(HttpSession session,
String name,
Object value) |
void |
ApplicationListeners.httpSessionAttributeRemoved(HttpSession session,
String name,
Object value) |
void |
ApplicationListeners.httpSessionAttributeReplaced(HttpSession session,
String name,
Object value) |
void |
ApplicationListeners.httpSessionIdChanged(HttpSession session,
String oldSessionId) |
void |
ApplicationListeners.sessionCreated(HttpSession session) |
void |
ApplicationListeners.sessionDestroyed(HttpSession session) |
Modifier and Type | Class and Description |
---|---|
class |
HttpSessionImpl
The HTTP session implementation.
|
Modifier and Type | Method and Description |
---|---|
HttpSession |
HttpServletRequestImpl.getSession() |
HttpSession |
HttpServletRequestImpl.getSession(boolean create) |
Constructor and Description |
---|
UnwrapSessionAction(HttpSession session) |
Modifier and Type | Method and Description |
---|---|
static void |
SavedRequest.tryRestoreRequest(HttpServerExchange exchange,
HttpSession session) |
Modifier and Type | Method and Description |
---|---|
HttpSession |
HttpSessionEvent.getSession()
Return the session that changed.
|
HttpSession |
HttpSessionBindingEvent.getSession()
Return the session that changed.
|
HttpSession |
HttpServletRequestWrapper.getSession()
The default behavior of this method is to return getSession()
on the wrapped request object.
|
HttpSession |
HttpServletRequest.getSession()
Returns the current session associated with this request,
or if the request does not have a session, creates one.
|
HttpSession |
HttpServletRequestWrapper.getSession(boolean create)
The default behavior of this method is to return getSession(boolean create)
on the wrapped request object.
|
HttpSession |
HttpServletRequest.getSession(boolean create)
Returns the current
HttpSession
associated with this request or, if there is no
current session and create is true, returns
a new session. |
HttpSession |
HttpSessionContext.getSession(String sessionId)
Deprecated.
As of Java Servlet API 2.1 with
no replacement. This method must
return null and will be removed in
a future version of this API.
|
Constructor and Description |
---|
HttpSessionBindingEvent(HttpSession session,
String name)
Constructs an event that notifies an object that it
has been bound to or unbound from a session.
|
HttpSessionBindingEvent(HttpSession session,
String name,
Object value)
Constructs an event that notifies an object that it
has been bound to or unbound from a session.
|
HttpSessionEvent(HttpSession source)
Construct a session event from the given source.
|
Modifier and Type | Method and Description |
---|---|
abstract HttpSession |
PageContext.getSession()
The current value of the session object (an HttpSession).
|
Modifier and Type | Method and Description |
---|---|
static Object |
Config.get(HttpSession session,
String name)
Looks up a configuration variable in the "session" scope.
|
static void |
Config.remove(HttpSession session,
String name)
Removes a configuration variable from the "session" scope.
|
static void |
Config.set(HttpSession session,
String name,
Object value)
Sets the value of a configuration variable in the "session" scope.
|
Modifier and Type | Method and Description |
---|---|
HttpSession |
ServletEndpointContext.getHttpSession()
The getHttpSession method returns the current HTTP session (as a javax.servlet.http.HTTPSession).
|
Modifier and Type | Method and Description |
---|---|
HttpSession |
ResteasyHttpServletRequestWrapper.getSession() |
HttpSession |
ResteasyHttpServletRequestWrapper.getSession(boolean create) |
Modifier and Type | Method and Description |
---|---|
HttpSession |
HttpServletRequestDelegate.getSession() |
HttpSession |
HttpServletRequestDelegate.getSession(boolean b) |
Modifier and Type | Method and Description |
---|---|
boolean |
HttpSessionContext.destroy(HttpSession session)
Destroy the session and all conversations stored in the session.
|
boolean |
HttpConversationContext.destroy(HttpSession session)
If the context is not currently associated with a
HttpServletRequest , then the context will be associated with
the specified HttpSession (for this thread), activated, destroyed, and then deactivated. |
Modifier and Type | Method and Description |
---|---|
protected String |
SPFormAuthenticationMechanism.savedRequestURL(HttpSession session) |
protected boolean |
SPFormAuthenticationMechanism.sessionIsValid(HttpSession session) |
Modifier and Type | Method and Description |
---|---|
void |
ServiceProviderSAMLWorkflow.sendToLogoutPage(HttpServletRequest request,
HttpServletResponse response,
HttpSession session,
ServletContext servletContext,
String logOutPage) |
Modifier and Type | Method and Description |
---|---|
static HttpSession |
BaseSAML2Handler.getHttpSession(SAML2HandlerRequest request) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.