Mercurial > hg > Database > Christie
annotate src/main/java/christie/topology/manager/NodeInfo.java @ 55:34181394333f
fix RecordTopology
author | akahori |
---|---|
date | Thu, 23 Aug 2018 10:31:48 +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 } |