RE: returning an interface

2001-06-30 Thread Eduardo Estefano
The object you are returning is probably not serializable. You must implement Serializable.   I have tons of methods that return the Collection interface.     -Original Message- From: Paul Knepper [mailto:[EMAIL PROTECTED]] Sent: Friday, June 29, 2001 12:34 PM To: Orion-Intere

Re: returning an interface

2001-06-29 Thread Noah Nordrum
the answer is in your question   MyInterfaceImpl is not Serializable.   you have 2 options: make your interface extend java.io.Serializable, or make your Impl class also implement java.io.Serializable.   Noah - Original Message - From: Paul Knepper To: Orion-Interest