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