/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package beans.bestell; import javax.ejb.Remote; /** * * @author Jan */ @Remote public interface BestellRemote { public double berechneGesamtpreis(long anzahl, double preis); public double berechneMehrwertSteuer(double preis); public boolean validierePosition(long artikelId, long anzahl); public boolean validiereBestellung(long artikelId, long anzahl, @javax.jws.WebParam(name = "kundenId") long kundenId); }