blob: 24970cf01d37fbeb3a9ed6251e1c77841646c653 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package beans.adressen;
import javax.ejb.Remote;
/**
*
* @author jmueller
*/
@Remote
public interface AdressenRemote {
String getLieferantenAdresseFuerArtikel(long artikel_id);
}
|