Project

General

Profile

1
package eu.dnetlib.dhp.wf.importer.facade;
2

    
3
/**
4
 * ISLookup service facade.
5
 * 
6
 * @author mhorst
7
 *
8
 */
9
public interface ISLookupFacade {
10

    
11
    /**
12
     * Provides all profiles matching given query
13
     * @param xPathQuery XPath query
14
     */
15
    Iterable<String> searchProfile(String xPathQuery) throws ServiceFacadeException;
16
    
17
}
(2-2/13)