esercizi webservices wsdl
This commit is contained in:
16
exam/RemoteEJB.java
Normal file
16
exam/RemoteEJB.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package exam;
|
||||
|
||||
import javax.ejb.Remote;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by Giovanni on 16/06/2015.
|
||||
*/
|
||||
@Remote
|
||||
public interface RemoteEJB {
|
||||
|
||||
List<CD> findall();
|
||||
List<CD> findauthor(String author_in);
|
||||
List<CD> findid(String id_in);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user