Package io.undertow.servlet.spec
Class HttpSessionImpl
- java.lang.Object
-
- io.undertow.servlet.spec.HttpSessionImpl
-
- All Implemented Interfaces:
jakarta.servlet.http.HttpSession
public class HttpSessionImpl extends java.lang.Object implements jakarta.servlet.http.HttpSessionThe HTTP session implementation. Note that for security reasons no attribute names that start with io.undertow are allowed.- Author:
- Stuart Douglas
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHttpSessionImpl.UnwrapSessionAction
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringIO_UNDERTOW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)static HttpSessionImplforSession(io.undertow.server.session.Session session, jakarta.servlet.ServletContext servletContext, boolean newSession)java.lang.ObjectgetAttribute(java.lang.String name)java.util.Enumeration<java.lang.String>getAttributeNames()longgetCreationTime()java.lang.StringgetId()longgetLastAccessedTime()intgetMaxInactiveInterval()jakarta.servlet.ServletContextgetServletContext()io.undertow.server.session.SessiongetSession()inthashCode()voidinvalidate()booleanisInvalid()booleanisNew()voidremoveAttribute(java.lang.String name)voidsetAttribute(java.lang.String name, java.lang.Object value)voidsetMaxInactiveInterval(int interval)
-
-
-
Field Detail
-
IO_UNDERTOW
public static final java.lang.String IO_UNDERTOW
- See Also:
- Constant Field Values
-
-
Method Detail
-
forSession
public static HttpSessionImpl forSession(io.undertow.server.session.Session session, jakarta.servlet.ServletContext servletContext, boolean newSession)
-
getCreationTime
public long getCreationTime()
- Specified by:
getCreationTimein interfacejakarta.servlet.http.HttpSession
-
getId
public java.lang.String getId()
- Specified by:
getIdin interfacejakarta.servlet.http.HttpSession
-
getLastAccessedTime
public long getLastAccessedTime()
- Specified by:
getLastAccessedTimein interfacejakarta.servlet.http.HttpSession
-
getServletContext
public jakarta.servlet.ServletContext getServletContext()
- Specified by:
getServletContextin interfacejakarta.servlet.http.HttpSession
-
setMaxInactiveInterval
public void setMaxInactiveInterval(int interval)
- Specified by:
setMaxInactiveIntervalin interfacejakarta.servlet.http.HttpSession
-
getMaxInactiveInterval
public int getMaxInactiveInterval()
- Specified by:
getMaxInactiveIntervalin interfacejakarta.servlet.http.HttpSession
-
getAttribute
public java.lang.Object getAttribute(java.lang.String name)
- Specified by:
getAttributein interfacejakarta.servlet.http.HttpSession
-
getAttributeNames
public java.util.Enumeration<java.lang.String> getAttributeNames()
- Specified by:
getAttributeNamesin interfacejakarta.servlet.http.HttpSession
-
setAttribute
public void setAttribute(java.lang.String name, java.lang.Object value)- Specified by:
setAttributein interfacejakarta.servlet.http.HttpSession
-
removeAttribute
public void removeAttribute(java.lang.String name)
- Specified by:
removeAttributein interfacejakarta.servlet.http.HttpSession
-
invalidate
public void invalidate()
- Specified by:
invalidatein interfacejakarta.servlet.http.HttpSession
-
isNew
public boolean isNew()
- Specified by:
isNewin interfacejakarta.servlet.http.HttpSession
-
getSession
public io.undertow.server.session.Session getSession()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
isInvalid
public boolean isInvalid()
-
-