package eu.dnetlib.api.data;

import eu.dnetlib.api.DriverService;
import eu.dnetlib.domain.EPR;

public interface DataAccessService extends DriverService {

	public EPR storeLookUpRS(String storeId) throws DataAccessServiceException;

	public EPR storeLookUpDataRS(String storeId)
			throws DataAccessServiceException;

	public EPR storeLookUpSDORS(String storeId)
			throws DataAccessServiceException;

	public String getObjectUrl(String storeId, String objectId)
			throws DataAccessServiceException;

	public String getObjectSDO(String storeId, String objectId)
			throws DataAccessServiceException;
}