I am working on a system with one master and multiple clients that communicate using JMS.
The server is a three tier application written in Java. In the server's data access layer, I am sending out JMS messages with tasks on one queue and I am receiving task status messages from the clients on another JMS queue. From those status messages I basically only extract Strings.
I have chosen a three tier architecture because I also need to access databases and do other business related computations before I can send a task to the clients.
I want the Strings of the status messages to be handed through all layers to the GUI where they are displayed.
I had the idead to use the same interface for all layer classes where the Strings go through, to enforce that they all have the same methods for receiving the data.
The alternative would be having separate interfaces for the layer classes, but those would then be essentially the same, except having a different class name.
Which alternative would be the proper way to ensure clean communication between the layers?
GUI->Business->Dataand reverse way too. You only required to have the single interface at theData Accesslayer. But, its not necessary thatGUI(view) layer access your JMS queue. Its not formal and good practice. If my understanding is wrong, comment on it. – Mohamed Saligh Sep 15 '11 at 9:32