/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package beans.auftragsAbwicklung; import exceptions.AuftragsAbwicklungException; import helper.AuftragsPosition; import java.util.List; import javax.ejb.Remote; /** * * @author jmueller */ @Remote public interface AuftragsAbwicklungRemote { public String bestelleArtikel(long kundenId, long artikelId, long artikelAnzahl) throws Exception; }