ref #9190: continue working on extracting all local issues to an extra plugin
[taxeditor.git] / eu.etaxonomy.taxeditor.webapp / src / main / java / eu / etaxonomy / taxeditor / webapp / server / CdmServerInfoLocal.java
diff --git a/eu.etaxonomy.taxeditor.webapp/src/main/java/eu/etaxonomy/taxeditor/webapp/server/CdmServerInfoLocal.java b/eu.etaxonomy.taxeditor.webapp/src/main/java/eu/etaxonomy/taxeditor/webapp/server/CdmServerInfoLocal.java
deleted file mode 100755 (executable)
index e195b08..0000000
+++ /dev/null
@@ -1,37 +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.webapp.server;
-
-import java.util.List;
-
-import eu.etaxonomy.taxeditor.remoting.source.CdmServerInfo;
-import eu.etaxonomy.taxeditor.remoting.source.CdmServerInfoConfig;
-
-/**
- * @author k.luther
- * @since Sep 18, 2020
- */
-public class CdmServerInfoLocal extends CdmServerInfo {
-    /**
-     * @param parameterObject
-     */
-    public CdmServerInfoLocal(CdmServerInfoConfig parameterObject) {
-        super(parameterObject);
-        // TODO Auto-generated constructor stub
-    }
-
-
-    public static List<CdmServerInfo> getCdmServersLocal() {
-        List<CdmServerInfo> serverInfoList = CdmServerInfo.getCdmServers();
-        // The local host managed server must not be in the config file
-        CdmServerInfoConfig localHostManagedConfig = new CdmServerInfoConfig(NAME_LOCALHOST_MGD, SERVER_LOCALHOST, NULL_PORT, CDMSERVER_PREFIX, false);
-        serverInfoList.add(new CdmServerInfo(localHostManagedConfig));
-        return serverInfoList;
-    }
-}