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=67ac344052752622d4bd3e59c4f88c2bc9f6d3b6;hp=0000000000000000000000000000000000000000;hpb=82fcb6324dc57a36a8c9c4f4b0e564a1f4ef97de;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; + } + +}