]> git.argeo.org Git - gpl/argeo-slc.git/blob - SimpleCmsTargetData.java
081fb899e92b5679fdcef823b8029450127ceae8
[gpl/argeo-slc.git] / 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 }