Using IsSerializable instead of Serializable should also cut down on the number of objects (although of course you have to modify your classes if you marked them as Serializable only).
On Thu, Apr 16, 2009 at 6:10 AM, Salvador Diaz <[email protected]>wrote: > > > any more suggestions? > > Create a marker interface for the objects that you want to go through > RPCs and type your Map with it: > > public interface DTO extends Serializable{ > } > > ... > > The you declare your Map as: > Map<String, DTO> > > Would that work ? > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
