com.jcorporate.expresso.core.servlet |
Base classes for all JavaCorporate servlets.
Straight servlets by and large are no longer used within Expresso as such.
We strongly encourage you to create your web-application based upon Expresso's
Controller objects rather than servlets since they give you basic flow control,
subdivision of tasks, and built-in per-state security.
|
Java Source File Name | Type | Comment |
CheckLogin.java | Class | CheckLogin accepts an HttpServletRequest and HttpServletResponse object
pair, and attempts to check if the user is logged in.
If not, CheckLogin tries to log the user in via a cookie from the
client. |
DBServlet.java | Class | A Servlet set up to have access to a relational database from the
server side. |
DefaultInit.java | Class | DefaultInit is an "empty" implementation of InitServlet, just so that there
is a non-abstract implementation for Expresso to use when no specific
lists are loaded. |
InitServlet.java | Class | InitServlet is a "faceless" servlet that is automatically started when
the servlet container starts.
NOTE: All the properties files in this directory will be read in. |
PathHandler.java | Class | |
RuntimeInitServlet.java | Class | |
ServletInstallLog.java | Class | This is an implementation of the IntallLog interface that is
useful when running installation systems inside servlets. |
StdServlet.java | Class | A Servlet base class adding some basic common functionality to the
core HttpServlet class. |
Test.java | Class | |