Serialized Form
-
Package lazyj
-
Class lazyj.DBSession extends java.lang.Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
public java.lang.Object readResolve()Overriden method to set the calling page to null when deserializing. This field will be set at a later time by {DBSession.getSession(ExtendedServlet)
-
-
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. SeeExtendedServlet.getApp()
. -
lLastAccess
long lLastAccess
Last access time for this session. -
lLastSaved
long lLastSaved
Last time the session was saved to the database. -
mValues
java.util.HashMap<java.lang.String,java.io.Serializable> mValues
Actual session values -
sFullname
java.lang.String sFullname
Complete name of the authenticated user. -
sID
java.lang.String sID
Session ID -
sIP
java.lang.String sIP
Client's IP address -
sLastPage
java.lang.String sLastPage
Last visited page on the site. -
sUserAgent
java.lang.String sUserAgent
User's browser. -
sUsername
java.lang.String sUsername
Username, if authenticated.
-
-
Class lazyj.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. SeeExtendedServlet.initMultipartRequest(String, int)
. -
osOut
java.io.OutputStream osOut
OutputStream to the client -
pwOut
java.io.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
java.lang.String sContentType
Content type, set byExtendedServlet.setContentType(String)
, used to put again the same content type when serving content from cache -
sPage
java.lang.String sPage
Current servlet that is executed -
sZone
java.lang.String sZone
The zone of the currently executed servlet
-
-
Class lazyj.LRUMap extends java.util.LinkedHashMap<K,V> implements Serializable
- serialVersionUID:
- 2470194500885712833L
-
Serialized Fields
-
iCacheSize
int iCacheSize
how many entries to allow
-
-