blob: a6f1001738488a1d122384edc5e160ef6681fdac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* 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);
}
|