Mercurial > hg > Database > Alice
view src/main/java/alice/topology/HostMessage.java @ 467:6e304a7a60e7 dispose
remove white space
author | sugi |
---|---|
date | Sat, 22 Nov 2014 12:08:24 +0900 |
parents | c7c57f8d7538 |
children | fac27e395930 |
line wrap: on
line source
package alice.topology; import org.msgpack.annotation.Message; @Message public class HostMessage { public String name; public int port; public String connectionName; public String reverseName; public String absName; public String remoteAbsName; public String cookie; // MD5 public HostMessage() { } public HostMessage(String name, int port) { this.name = name; this.port = port; } public HostMessage(String name, int port, String connectionName, String reverseName) { this.name = name; this.port = port; this.connectionName = connectionName; this.reverseName = reverseName; } }