X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.runtime%2Fsrc%2Forg%2Fargeo%2Fslc%2Fcms%2Fdeploy%2FSimpleCmsTargetData.java;fp=org.argeo.slc.runtime%2Fsrc%2Forg%2Fargeo%2Fslc%2Fcms%2Fdeploy%2FSimpleCmsTargetData.java;h=081fb899e92b5679fdcef823b8029450127ceae8;hb=d07cf3c7dfdeafa2b1efafe547b54d56a8b52ced;hp=0000000000000000000000000000000000000000;hpb=8596685647867307b862b8a89742b6a62ba75fcd;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.runtime/src/org/argeo/slc/cms/deploy/SimpleCmsTargetData.java b/org.argeo.slc.runtime/src/org/argeo/slc/cms/deploy/SimpleCmsTargetData.java new file mode 100644 index 000000000..081fb899e --- /dev/null +++ b/org.argeo.slc.runtime/src/org/argeo/slc/cms/deploy/SimpleCmsTargetData.java @@ -0,0 +1,40 @@ +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; + } + +}