Class HttpSessionHashModel

java.lang.Object
freemarker.ext.jakarta.servlet.HttpSessionHashModel
All Implemented Interfaces:
TemplateHashModel, TemplateModel, Serializable

public final class HttpSessionHashModel extends Object implements TemplateHashModel, Serializable
TemplateHashModel wrapper for a HttpSession attributes.

Note that this is for the legacy "javax" Servlet/JSP API; for Jakarta (that is, in modern Servlet containers), use freemarker.ext.jakarta.servlet.HttpSessionHashModel instead (since 2.3.33).

See Also:
Serialized Form
  • Constructor Details

    • HttpSessionHashModel

      public HttpSessionHashModel(jakarta.servlet.http.HttpSession session, ObjectWrapper wrapper)
      Use this constructor when the session already exists.
      Parameters:
      session - the session
      wrapper - an object wrapper used to wrap session attributes
    • HttpSessionHashModel

      public HttpSessionHashModel(FreemarkerServlet servlet, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, ObjectWrapper wrapper)
      Use this constructor when the session isn't already created. It is passed enough parameters so that the session can be properly initialized after it's detected that it was created.
      Parameters:
      servlet - the FreemarkerServlet that created this model. If the model is not created through FreemarkerServlet, leave this argument as null.
      request - the actual request
      response - the actual response
      wrapper - an object wrapper used to wrap session attributes
  • Method Details