Move SLC Init activator to SLC Runtime
[gpl/argeo-slc.git] / org.argeo.slc.cms / src / org / argeo / slc / cms / deploy / SimpleCmsTargetData.java
diff --git a/org.argeo.slc.cms/src/org/argeo/slc/cms/deploy/SimpleCmsTargetData.java b/org.argeo.slc.cms/src/org/argeo/slc/cms/deploy/SimpleCmsTargetData.java
deleted file mode 100644 (file)
index 081fb89..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-package org.argeo.slc.cms.deploy;
-
-import java.nio.file.Path;
-
-public class SimpleCmsTargetData implements CmsTargetData {
-       private Path instanceData;
-       private String host;
-       private Integer httpPort;
-
-       public SimpleCmsTargetData(Path instanceData, String host, Integer httpPort) {
-               this.instanceData = instanceData;
-               this.host = host;
-               this.httpPort = httpPort;
-       }
-
-       public String getHost() {
-               return host;
-       }
-
-       public void setHost(String hostname) {
-               this.host = hostname;
-       }
-
-       public Integer getHttpPort() {
-               return httpPort;
-       }
-
-       public void setHttpPort(Integer httpPort) {
-               this.httpPort = httpPort;
-       }
-
-       public Path getInstanceData() {
-               return instanceData;
-       }
-
-       public void setInstanceData(Path instanceData) {
-               this.instanceData = instanceData;
-       }
-
-}