Serialized Form

  • Package lazyj

    • Class lazyj.DBSession

      class DBSession extends Object implements Serializable
      serialVersionUID:
      1L
      • Serialization Methods

      • Serialized Fields

        • bIPProtected
          boolean bIPProtected
          Flag that tells if this session is IP protected (eg. if the same session id is allowed from several client IP addresses)
        • flushTime
          long flushTime
          When executing delayed database updates, this is the moment in time when the operation should be done.
        • iApp
          int iApp
          Application ID. See ExtendedServlet.getApp().
        • lLastAccess
          long lLastAccess
          Last access time for this session.
        • lLastSaved
          long lLastSaved
          Last time the session was saved to the database.
        • mValues
          HashMap<String,Serializable> mValues
          Actual session values
        • sFullname
          String sFullname
          Complete name of the authenticated user.
        • sID
          String sID
          Session ID
        • sIP
          String sIP
          Client's IP address
        • sLastPage
          String sLastPage
          Last visited page on the site.
        • sUserAgent
          String sUserAgent
          User's browser.
        • sUsername
          String sUsername
          Username, if authenticated.
    • Class lazyj.ExtendedServlet

      class ExtendedServlet extends javax.servlet.http.HttpServlet implements Serializable
      serialVersionUID:
      1L
      • Serialized Fields

        • bGet
          boolean bGet
          Servlets can treat GET and POST differently based on the method they override or by looking at this variable
        • bRedirect
          boolean bRedirect
          Remember whether or not there was a redirect executed by the servlet
        • dbs
          DBSession dbs
          Current session
        • mpRequest
          com.oreilly.servlet.MultipartRequest mpRequest
          Object used for file uploading. See ExtendedServlet.initMultipartRequest(String, int).
        • osOut
          OutputStream osOut
          OutputStream to the client
        • pwOut
          PrintWriter pwOut
          PrintWriter to the client. Same as osOut, but other interface
        • request
          javax.servlet.http.HttpServletRequest request
          The original request object
        • response
          javax.servlet.http.HttpServletResponse response
          The original response object
        • rw
          RequestWrapper rw
          Request wrapper that does all the work
        • sContentType
          String sContentType
          Content type, set by ExtendedServlet.setContentType(String), used to put again the same content type when serving content from cache
        • sPage
          String sPage
          Current servlet that is executed
        • sZone
          String sZone
          The zone of the currently executed servlet
    • Class lazyj.LRUMap

      class LRUMap extends LinkedHashMap<K,V> implements Serializable
      serialVersionUID:
      2470194500885712833L
      • Serialized Fields

        • iCacheSize
          int iCacheSize
          how many entries to allow