1 25 26 package org.objectweb.jonas.jtests.beans.sequence; 27 28 29 import javax.ejb.EJBLocalHome ; 30 import javax.ejb.CreateException ; 31 import javax.ejb.FinderException ; 32 33 36 public interface WoHomeLocal extends EJBLocalHome { 37 public WoLocal create(String assId, int qty) throws CreateException ; 38 public WoLocal findByPrimaryKey(Integer id) throws FinderException ; 39 } 40 | Popular Tags |