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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
51
597315102875 add localTestTopology
akahori
parents:
diff changeset
1 package christie.test.topology.localTestTopology;
597315102875 add localTestTopology
akahori
parents:
diff changeset
2
597315102875 add localTestTopology
akahori
parents:
diff changeset
3 import christie.daemon.Config;
597315102875 add localTestTopology
akahori
parents:
diff changeset
4
597315102875 add localTestTopology
akahori
parents:
diff changeset
5 public class LocalTestTopologyConfig extends Config {
597315102875 add localTestTopology
akahori
parents:
diff changeset
6
597315102875 add localTestTopology
akahori
parents:
diff changeset
7 public String hostname = "127.0.0.1";
597315102875 add localTestTopology
akahori
parents:
diff changeset
8 public int connectPort = 10000;
597315102875 add localTestTopology
akahori
parents:
diff changeset
9 public String key = "remote";
597315102875 add localTestTopology
akahori
parents:
diff changeset
10
597315102875 add localTestTopology
akahori
parents:
diff changeset
11 public LocalTestTopologyConfig(String[] args,int connectPort, String dsmName) {
597315102875 add localTestTopology
akahori
parents:
diff changeset
12 super(args);
597315102875 add localTestTopology
akahori
parents:
diff changeset
13 this.connectPort = connectPort;
597315102875 add localTestTopology
akahori
parents:
diff changeset
14 key = dsmName;
597315102875 add localTestTopology
akahori
parents:
diff changeset
15 }
597315102875 add localTestTopology
akahori
parents:
diff changeset
16
597315102875 add localTestTopology
akahori
parents:
diff changeset
17 }