argos/dmp-backend/core/src/main/java/eu/eudat/service/semantic/SemanticsService.java

14 lines
303 B
Java

package eu.eudat.service.semantic;
import eu.eudat.query.lookup.SemanticsLookup;
import java.io.IOException;
import java.util.List;
public interface SemanticsService {
List<String> getSemantics(SemanticsLookup lookup) throws IOException;
List<Semantic> getSemantics() throws IOException;
}