/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package beans.lieferant; import exceptions.IllegalerWertException; import exceptions.UnbekanntesEntityException; import javax.ejb.Remote; /** * * @author jmueller */ @Remote public interface LieferantRemote { void bestelleNach(long id, long anzahl) throws UnbekanntesEntityException, IllegalerWertException; }