Package org.thymeleaf.web.servlet
Class JakartaServletWebSession
- java.lang.Object
-
- org.thymeleaf.web.servlet.JakartaServletWebSession
-
- All Implemented Interfaces:
IWebSession,IServletWebSession
final class JakartaServletWebSession extends java.lang.Object implements IServletWebSession
- Since:
- 3.1.0
-
-
Constructor Summary
Constructors Constructor Description JakartaServletWebSession(jakarta.servlet.http.HttpServletRequest request)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanexists()java.util.Enumeration<java.lang.String>getAttributeNames()java.lang.ObjectgetAttributeValue(java.lang.String name)java.lang.ObjectgetNativeSessionObject()voidsetAttributeValue(java.lang.String name, java.lang.Object value)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.thymeleaf.web.servlet.IServletWebSession
containsAttribute, getAllAttributeNames, getAttributeCount, getAttributeMap, removeAttribute
-
-
-
-
Method Detail
-
exists
public boolean exists()
- Specified by:
existsin interfaceIWebSession
-
getAttributeNames
public java.util.Enumeration<java.lang.String> getAttributeNames()
- Specified by:
getAttributeNamesin interfaceIServletWebSession
-
getAttributeValue
public java.lang.Object getAttributeValue(java.lang.String name)
- Specified by:
getAttributeValuein interfaceIWebSession
-
setAttributeValue
public void setAttributeValue(java.lang.String name, java.lang.Object value)- Specified by:
setAttributeValuein interfaceIWebSession
-
getNativeSessionObject
public java.lang.Object getNativeSessionObject()
- Specified by:
getNativeSessionObjectin interfaceIServletWebSession
-
-