blob: 114753e316a9f18d994abbed5ff594261f5a2ac6 [file] [log] [blame]
package org.apache.xmlbeans.test.jam.dummyclasses.ejb;
public class TraderEJB implements IEnv {
/**
* @ejbgen:remote-method
* isolation-level = Serializable
*
*/
public TradeResult buy(String customerName, String stockSymbol, int shares)
{
return null;
}
}