esercizi webservices wsdl

This commit is contained in:
2015-06-29 00:45:45 +02:00
parent 620edb5049
commit 53c280b729
60 changed files with 1741 additions and 2 deletions

16
exam/RemoteEJB.java Normal file
View 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);
}