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,18 @@
package exercise2_ws;
import javax.jws.WebService;
/**
* Created by Giovanni on 13/06/2015.
*/
@WebService(endpointInterface ="exercise2_ws.wsinterface")
public class BookWebService implements wsinterface {
public boolean checkbook(Book b) {
if (b.getIsbn() == null)
return false;
return true;
}
}