Thank You.
I am trying to breaking my app into: client, server, and shared modules. in the shared module, I would like to put RequestContext, and Entity/Value Proxy interfaces, as well as server side Interfaces corresponding to RequestContext, for example, this shared module: EmployeeProxy - used by client EmployeeRequest - used by client EmployeeService - used by server, conceptually equivalent of EmployeeRequest and then on server modules, I implement interfaces defined in the shared module above (EmployeeService for example) but not doing anything about EmployeeProxy and EmployeeRequest. because they are going to be implemented by client. so although the module is shared, client and server implement different interfaces. this made me wonder, whether I have to make it a shared module after all ? what do you think ? do you think this way of partitioning is ok ? Thank You -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
