diff src/alice/topology/HostMessage.java @ 28:98ab26e09a98

Configuration Manager work and implements reverseKey
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Tue, 17 Jan 2012 08:41:34 +0900
parents 2ca2d961a8d2
children c0712e0b0a24
line wrap: on
line diff
--- a/src/alice/topology/HostMessage.java	Tue Jan 17 03:52:39 2012 +0900
+++ b/src/alice/topology/HostMessage.java	Tue Jan 17 08:41:34 2012 +0900
@@ -9,6 +9,7 @@
 	public String name;
 	public int port;
 	@Optional public String connectionName;
+	@Optional public String reverseName;
 	
 	public HostMessage() { }
 	public HostMessage(String name, int port) {
@@ -16,10 +17,11 @@
 		this.port = port;
 	}
 
-	public HostMessage(String name, int port, String connectionName) {
+	public HostMessage(String name, int port, String connectionName, String reverseName) {
 		this.name = name;
 		this.port = port;
 		this.connectionName = connectionName;
+		this.reverseName = reverseName;
 	}
 	
 }