Re: Wrapping a Javabean with an Enterprise Javabean
Posted By:
Django_Boonman
Posted On:
Wednesday, April 25, 2001 08:32 AM
What I did is Made an EJB which inherits all functionality of the JavaBean. Now just select some of the methods to add to the remote interface.
public class myWrapperEJB extends myJavaBean implements SessionBean {...}
Should work!