Mercurial > hg > Database > Christie
annotate src/main/java/christie/test/topology/localTestTopology/LocalTestTopologyConfig.java @ 72:32f6f9de97c1
add ring.dot
author | akahori |
---|---|
date | Sat, 01 Sep 2018 10:22:27 +0900 |
parents | 597315102875 |
children | 0a724c973fc9 |
rev | line source |
---|---|
51 | 1 package christie.test.topology.localTestTopology; |
2 | |
3 import christie.daemon.Config; | |
4 | |
5 public class LocalTestTopologyConfig extends Config { | |
6 | |
7 public String hostname = "127.0.0.1"; | |
8 public int connectPort = 10000; | |
9 public String key = "remote"; | |
10 | |
11 public LocalTestTopologyConfig(String[] args,int connectPort, String dsmName) { | |
12 super(args); | |
13 this.connectPort = connectPort; | |
14 key = dsmName; | |
15 } | |
16 | |
17 } |