Mercurial > hg > Database > Christie
diff src/main/java/christie/test/topology/localTestTopology/LocalTestTopologyConfig.java @ 51:597315102875
add localTestTopology
author | akahori |
---|---|
date | Thu, 23 Aug 2018 09:32:15 +0900 |
parents | |
children | 0a724c973fc9 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/java/christie/test/topology/localTestTopology/LocalTestTopologyConfig.java Thu Aug 23 09:32:15 2018 +0900 @@ -0,0 +1,17 @@ +package christie.test.topology.localTestTopology; + +import christie.daemon.Config; + +public class LocalTestTopologyConfig extends Config { + + public String hostname = "127.0.0.1"; + public int connectPort = 10000; + public String key = "remote"; + + public LocalTestTopologyConfig(String[] args,int connectPort, String dsmName) { + super(args); + this.connectPort = connectPort; + key = dsmName; + } + +}