package exercise1; import javax.ejb.Remote; import javax.persistence.Query; import javax.validation.constraints.NotNull; import java.util.List; /** * Created by Giovanni on 24/05/2015. */ @Remote public interface RemoteInterface { @NotNull List findname (@NotNull String name); @NotNull List findsurname (@NotNull String name) ; @NotNull List findyear (@NotNull String name) ; }