package eu.dnetlib.enabling.is.lookup.rmi; import java.util.List; import javax.jws.WebParam; import javax.jws.WebService; import eu.dnetlib.common.rmi.BaseService; @WebService(targetNamespace = "http://services.dnetlib.eu/") public interface ISLookUpService extends BaseService { Boolean flushCachedResultSets(); @Deprecated String getCollection(@WebParam(name = "profId") String profId, @WebParam(name = "format") String format) throws ISLookUpException; String retrieveCollection(@WebParam(name = "profId") String profId) throws ISLookUpException; String getResourceProfile(@WebParam(name = "profId") String profId) throws ISLookUpException, ISLookUpDocumentNotFoundException; String getResourceProfileByQuery(@WebParam(name = "XQuery") String XQuery) throws ISLookUpException, ISLookUpDocumentNotFoundException; String getResourceQoSParams(@WebParam(name = "id") String id) throws ISLookUpException; String getResourceTypeSchema(@WebParam(name = "resourceType") String resourceType) throws ISLookUpException, ISLookUpDocumentNotFoundException; List listCollections( @WebParam(name = "format") String format, @WebParam(name = "idfather") String idfather, @WebParam(name = "owner") String owner) throws ISLookUpException; @Deprecated List listDHNIDs() throws ISLookUpException; List listResourceTypes() throws ISLookUpException; @Deprecated List listServiceIDs(@WebParam(name = "serviceType") String serviceType) throws ISLookUpException; @Deprecated List listServiceTypes() throws ISLookUpException; /** * Like searchProfile(), but bypassing the resultset. Useful for short xquery results. * * @param xquery xquery to be executed * @return list of strings (never null) * @throws ISLookUpException could happen */ List quickSearchProfile(@WebParam(name = "XQuery") String xquery) throws ISLookUpException; }