Package org.thymeleaf.web.servlet
Interface IServletWebSession
-
- All Superinterfaces:
IWebSession
- All Known Implementing Classes:
JakartaServletWebSession,JavaxServletWebSession
public interface IServletWebSession extends IWebSession
- Since:
- 3.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleancontainsAttribute(java.lang.String name)default java.util.Set<java.lang.String>getAllAttributeNames()default intgetAttributeCount()default java.util.Map<java.lang.String,java.lang.Object>getAttributeMap()java.util.Enumeration<java.lang.String>getAttributeNames()java.lang.ObjectgetNativeSessionObject()default voidremoveAttribute(java.lang.String name)-
Methods inherited from interface org.thymeleaf.web.IWebSession
exists, getAttributeValue, setAttributeValue
-
-
-
-
Method Detail
-
getAttributeNames
java.util.Enumeration<java.lang.String> getAttributeNames()
-
containsAttribute
default boolean containsAttribute(java.lang.String name)
- Specified by:
containsAttributein interfaceIWebSession
-
getAttributeCount
default int getAttributeCount()
- Specified by:
getAttributeCountin interfaceIWebSession
-
getAllAttributeNames
default java.util.Set<java.lang.String> getAllAttributeNames()
- Specified by:
getAllAttributeNamesin interfaceIWebSession
-
getAttributeMap
default java.util.Map<java.lang.String,java.lang.Object> getAttributeMap()
- Specified by:
getAttributeMapin interfaceIWebSession
-
removeAttribute
default void removeAttribute(java.lang.String name)
- Specified by:
removeAttributein interfaceIWebSession
-
getNativeSessionObject
java.lang.Object getNativeSessionObject()
-
-