The COL's goal is to reduce development time and maintenance requirements for WOF apps based on Enterprise Objects Framework.
EOF and WOF are general frameworks for information handling:
EOF for relational to object handling
WOF for object to HTML
EOF is split into three layers:
Access (RDB <-> Object)
Control (Object management) [available in EOF 2.0]
Interface (Object <-> Interface). [For web apps, this is ~WOF]
The CRUD Layer simply extends each of these layers to provide the general code one typically writes when dealing Enterprise Objects (EOGenericRecord, and subclasses). COL's intendment is to allow users to perform the basic database operations on Enterprise Objects: Create, Read, Update, and Delete.
With a few underlying assumptions about application requirements and complexity, the CRUD Objects Layer can replace a large amount of infrastructure necessary to maintain information based on Enterprise Objects.
Again, the code to support this behavior can be generalized to a large degree. The CRUD Layer is that generalization.
Additionally, for EO's with "state", the COL includes Entity Life Cycle (ELC) support. [Most reference data (Building, Location, CustomerType, etc.) is stateless, however, many core entities (PurchaseRequisition, BugReport, WorkOrder, etc.) have the need for state management and ELC support.]
These abilities, and offering a means of building qualifiers (e.g. Query By Example), can provide a large amount of core application logic that no longer needs to be developed or maintained.
A typical drawback to this approach is lack of extensibility. COL addresses this issue by providing numerous opportunities in which to extend the CRUD Object Layer in a structured manner.
[Currently, the CRUD Layer is specific to Web Objects Framework, but with the convergence of WebObjects and OpenStep in Q3 of '96, the CRUD Layer will be extended to support OpenStep (traditional Client/Server) apps with ease.]
Basic CRUD Objects Layer Flow
-----------------------------
In it's most basic form, COL works as follows:
[MainMenu.wo]
- An Entity is selected (e.g. Customer)
and passed to the QualifierBuilderPage.
[CRUDQualifierBuilderPage.wo]
- A Qualifier is built for the Entity (Customer)
and passed to the PickList.
[CRUDPickListPage.wo]
- Customer(s) matching the Qualifer are shown.
Customers are selected and passed to the Editor.
[CRUDEditorPage.wo]
- Detailed editing and updating are performed.
Behind the Scene
----------------
Much of the power of CRUD Objects Layer is contained in the reusable pages
that can be tailored to specific needs. The page level API is as follows:
Inspection of the API above indicates an expicit mechanism for data handling of any/all Enterpise Objects. In addition, this movement is not constricting, as any Enterpise Object may easily override this behavior.
How to Use the CRUD Objects Layer
---------------------------------
To make use of the CRUD Layer in its most basic form, simply do the following:
- Create a .eomodel
- Access the URL: http://<host>/cgi-bin/WebObjects/CRUDLayer
...and type in the name of your .eomodel file (e.g. "MyModel")