com.jcorporate.expresso.services.controller.dbmaint |
This package contains the various State objects that make up the "Model" of
the DBMaint controller. These states can be extended and customized to give
DBMaint specific custom behaviours.
DBMaint is a generic database-editing web user interface. It provides all basic
needs for add/update/delete/searching records for data tables. It interacts
directly with DBObjects.
|
Java Source File Name | Type | Comment |
Add.java | Class | Displays a form for a new DBObject record. |
AddUpdate.java | Class | Processes date entered via standard form presented by
Add. |
DynamicCmd.java | Class | Base class for all command classes. |
GetBase.java | Class | Base class for search/add & update operations that
were previously carried out in DBMaint.doGet(). |
List.java | Class | list all records in a DBObject. |
ListBase.java | Class | Base class for the DBMaint commands that display lists of records, such
as Search and List. |
Lookup.java | Class | |
Search.java | Class | allows the user to search for a record. |
SearchList.java | Class | Processes the data passed via a standard form from SEARCH.
This class requires a match on all specified fields of a DBObject
for a successful outcome. |
Update.java | Class | Provides a standard form for user to update all fields
(except primary key). |
UpdateBase.java | Class | Base Class for posting add, delete and updating operations. |
UpdateDelete.java | Class | Lets user delete a record. |
UpdateUpdate.java | Class | Lets user update a record. |
ViewBlob.java | Class | This state allows for viewing of BLOB data types. |