sdi-service/src/main/java/org/gcube/spatial/data/sdi/engine/ThreddsManager.java

15 lines
687 B
Java

package org.gcube.spatial.data.sdi.engine;
import org.gcube.spatial.data.sdi.engine.impl.faults.ConfigurationNotFoundException;
import org.gcube.spatial.data.sdi.engine.impl.faults.ServiceRegistrationException;
import org.gcube.spatial.data.sdi.model.health.ServiceHealthReport;
import org.gcube.spatial.data.sdi.model.service.ThreddsConfiguration;
import org.gcube.spatial.data.sdi.model.services.ThreddsDefinition;
public interface ThreddsManager {
public ThreddsConfiguration getConfiguration() throws ConfigurationNotFoundException;
public ServiceHealthReport getHealthReport();
public String registerService(ThreddsDefinition definition)throws ServiceRegistrationException;
}