esercizi webservices wsdl
This commit is contained in:
16
exercise2_ws/RemoteInterface.java
Normal file
16
exercise2_ws/RemoteInterface.java
Normal 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() ;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user