package eu.dnetlib.espas.sosservice;

import java.util.Map;
import eu.dnetlib.espas.exception.OwsException;

public interface SOSDataProvider {

    String getResultTemplate(Map<String, String>parameters) throws OwsException;

    String getResult(Map<String, String>parameters) throws OwsException;
}