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

View File

@@ -0,0 +1,16 @@
package exercise2_ws;
import javax.ejb.Remote;
import javax.validation.constraints.NotNull;
import java.util.List;
/**
* Created by Giovanni on 24/05/2015.
*/
@Remote
public interface RemoteInterface {
@NotNull List<exercise2_ws.Book> findbyisbn(@NotNull String in_isbn);
List<exercise2_ws.Book> findall() ;
}