cleanup
[taxeditor.git] / eu.etaxonomy.taxeditor.workbench / src / main / java / eu / etaxonomy / taxeditor / workbench / datasource / ICdmServer.java
diff --git a/eu.etaxonomy.taxeditor.workbench/src/main/java/eu/etaxonomy/taxeditor/workbench/datasource/ICdmServer.java b/eu.etaxonomy.taxeditor.workbench/src/main/java/eu/etaxonomy/taxeditor/workbench/datasource/ICdmServer.java
deleted file mode 100755 (executable)
index bc865ff..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
-* Copyright (C) 2020 EDIT
-* European Distributed Institute of Taxonomy
-* http://www.e-taxonomy.eu
-*
-* The contents of this file are subject to the Mozilla Public License Version 1.1
-* See LICENSE.TXT at the top of this package for the full license terms.
-*/
-package eu.etaxonomy.taxeditor.workbench.datasource;
-
-import java.io.File;
-
-
-/**
- * @author k.luther
- * @since Sep 17, 2020
- */
-public interface ICdmServer {
-    public boolean isAlive();
-    public String getDataSourceName();
-    public void setForceSchemaCreate(boolean isForceSchemaCreate);
-    public void setForceSchemaUpdate(boolean isForceSchemaUpdate);
-    public void start(boolean wait, final ICDMServerError cdmServerError) throws CdmEmbeddedServerException;
-    public int getPort();
-    public void stop() throws Exception;
-    public boolean isStarted();
-    public boolean isFailed();
-
-    public void setDataSourceParams(String dataSourceName, File dataSourceFile) throws CdmEmbeddedServerException ;
-
-
-}