Experiment with runtime manager
[gpl/argeo-slc.git] / org.argeo.slc.cms / src / org / argeo / slc / cms / deploy / SimpleCmsTargetData.java
index ecf17d684233c53d515baa06a7a686d5555b1409..081fb899e92b5679fdcef823b8029450127ceae8 100644 (file)
@@ -4,13 +4,23 @@ import java.nio.file.Path;
 
 public class SimpleCmsTargetData implements CmsTargetData {
        private Path instanceData;
+       private String host;
        private Integer httpPort;
 
-       public SimpleCmsTargetData(Path instanceData, 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;
        }