Kinda confused how this should work. I have an entity bean that has a getter method in it. My DAO implementation class needs to make a call to this entity beans getter method because I don't want to move the getter method into my DAO class.

--- entity bean
/**
* ejb.create-method
*/
public abstract String ejbCreate(MyObj obj) throws CreateException, RemoteException;


/**
* @ejb.interface-method
*   view-type="local"
*/
public String getMethod() { ... }

--- DAO impl class
public String create(MyObj obj) throws CreateException, RemoteException {
   // somehow call ejb.getMethod();
}

Do I have the xDoc tags correct or is there something I should be adding so that I can pass the entity bean into the DAO so that it can make use of the getter methods?

Any help much appreciated.


------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ xdoclet-user mailing list xdoclet-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to