On Feb 22, 4:11 am, John Whish <[email protected]> wrote: > I built an app using Transfer which was migrated across to Hibernate (when > CF 9 was in beta). The key to it all was using an Abstract Service, Abstract > Gateway and Abstract Entity (or decorators in Transfer) classes. That way > the implimentation could be changed without changing the interface.
If you use type="component" (or type="any") you don't even need to worry about abstract parent types. Then you can swap out a Transfer object for a Hibernate managed object, or anything you want and not be constrained by types. That's how we've solved this and other problems before. -- Before posting questions to the group please read: http://groups.google.com/group/transfer-dev/web/how-to-ask-support-questions-on-transfer You received this message because you are subscribed to the Google Groups "transfer-dev" 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/transfer-dev?hl=en
