org.cougaar.pizza.servlet |
This package defines servlets for use with the Pizza Party
application.
The {@link org.cougaar.pizza.servlet.HistoryServlet} is a generic servlet for monitoring changes to the
blackboard. Use the {@link org.cougaar.pizza.servlet.HistoryServletFriendly} interface to allow the
servlet to show meaningful information about your blackboard objects.
The {@link org.cougaar.pizza.servlet.PizzaPreferenceServlet} is the
main UI for the pizza party app. It shows what the application is
about, what has happened so far, how guests have RSVPed, and the
status of the pizza orders.
|
Java Source File Name | Type | Comment |
HistoryServlet.java | Class | Generic debugging servlet/plugin that displays all Adds/Changes/Removes
on Blackboard objects, accessed at "/history".
Specifically tracks changes on Relays, Tasks, PlanElements, Assets,
UniqueObjects, and implementations of
HistoryServletFriendly .
For every event, attempts to explain the event.
For instance, when a Relay is first published, it shows which Agent
the Relay is being sent to.
The Servlet lets the user sort events by time, then by uid, or by uid
only. |
HistoryServletFriendly.java | Interface | Simple interface for Blackboard objects to supply pretty HTML descriptions
of themselves, for use in servlets like the
HistoryServlet . |
PizzaPreferenceServlet.java | Class | The main UI for the application: shows collected RSVPs from invited guests
at "/pizza", and the progress on ordering the pizza. |