]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.runtime/src/org/argeo/slc/cms/deploy/SimpleCmsTargetData.java
Prepare next development cycle
[gpl/argeo-slc.git] / org.argeo.slc.runtime / src / org / argeo / slc / cms / deploy / SimpleCmsTargetData.java
1 package org.argeo.slc.cms.deploy;
2
3 import java.nio.file.Path;
4
5 public class SimpleCmsTargetData implements CmsTargetData {
6 private Path instanceData;
7 private String host;
8 private Integer httpPort;
9
10 public SimpleCmsTargetData(Path instanceData, String host, Integer httpPort) {
11 this.instanceData = instanceData;
12 this.host = host;
13 this.httpPort = httpPort;
14 }
15
16 public String getHost() {
17 return host;
18 }
19
20 public void setHost(String hostname) {
21 this.host = hostname;
22 }
23
24 public Integer getHttpPort() {
25 return httpPort;
26 }
27
28 public void setHttpPort(Integer httpPort) {
29 this.httpPort = httpPort;
30 }
31
32 public Path getInstanceData() {
33 return instanceData;
34 }
35
36 public void setInstanceData(Path instanceData) {
37 this.instanceData = instanceData;
38 }
39
40 }