Interface IWebSession

All Known Subinterfaces:
IServletWebSession

public interface IWebSession
Since:
3.1.0
Author:
Daniel Fernández
  • Method Details

    • exists

      boolean exists()
    • containsAttribute

      boolean containsAttribute(String name)
    • getAttributeCount

      int getAttributeCount()
    • getAllAttributeNames

      Set<String> getAllAttributeNames()
    • getAttributeMap

      Map<String,Object> getAttributeMap()
    • getAttributeValue

      Object getAttributeValue(String name)
    • setAttributeValue

      void setAttributeValue(String name, Object value)
    • removeAttribute

      void removeAttribute(String name)