annotate src/main/java/christie/topology/manager/NodeInfo.java @ 50:8dfd93810041
fix config and HostMessage
author |
akahori |
date |
Thu, 23 Aug 2018 09:30:36 +0900 |
parents |
cf5a75bc3e55 |
children |
f884c1bd0d36 |
rev |
line source |
41
|
1 package christie.topology.manager;
|
|
2
|
|
3 public class NodeInfo {
|
|
4
|
|
5 public String sourceNodeName;
|
|
6 public String connectionName;
|
|
7 public String reverseName;
|
|
8
|
|
9
|
|
10 public NodeInfo(String source, String connection) {
|
|
11 this.sourceNodeName = source;
|
|
12 this.connectionName = connection;
|
|
13 }
|
|
14
|
|
15 }
|