Well, I don't have a written description of the problem to solve.
I just have to implement a GUI using jGoodies which should communicate with a server using HTTP via Spring remoting.
Some GUI components will be initialized with content from the server side (or better from a database) like a JComboBox which shall display the name of user-defined SQL queries. Whenever such a name in the JComboBox is selected the assigned SQL query
string shall be displayed within the JTextArea component.
Furthermore a
delete button must be shown to enable the user to delete such a named query. From this point of view I thought there is a binding needed to synchronize the domain model (and the database) with the presentation model.
The GUI will be expanded by a
scheduling area where the user can define an interval in which the SQL query shall be executed automatically after the definition has been scheduled (send to the server). Furthermore an
export area exist where the user can define an export target for the result of the automatically executed SQL Query (job).
So I thought of a
QueryBean, a
JobBean and an
ExporterBean which must be
bound anyhow.