Project

General

Profile

1
package eu.dnetlib.api.enabling;
2

    
3
import java.util.List;
4

    
5
import eu.dnetlib.api.DriverService;
6
import eu.dnetlib.domain.EPR;
7

    
8
public interface ISLookUpService extends DriverService {
9

    
10
	public List<String> quickSearchProfile(String XQuery)
11
			throws ISLookUpServiceException;
12

    
13
	public String getResourceProfile(String profId)
14
			throws ISLookUpServiceException;
15

    
16
	public String getResourceProfileByQuery(String XQuery)
17
			throws ISLookUpServiceException;
18

    
19
	public List<String> listResourceTypes() throws ISLookUpServiceException;
20

    
21
	public String getResourceTypeSchema(String resourceType)
22
			throws ISLookUpServiceException;
23
}
(7-7/14)