Mercurial > hg > Database > Christie
comparison src/main/java/christie/topology/manager/NodeInfo.java @ 41:cf5a75bc3e55
add
author | akahori |
---|---|
date | Tue, 31 Jul 2018 17:46:32 +0900 |
parents | |
children | f884c1bd0d36 |
comparison
equal
deleted
inserted
replaced
40:342931aea0b8 | 41:cf5a75bc3e55 |
---|---|
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 } |