annotate src/main/java/christie/topology/manager/keepalive/RespondData.java @ 74:e2ce8038815a

fix FileParser
author akahori
date Wed, 05 Sep 2018 09:43:22 +0900
parents fd944876257b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
49
fd944876257b add node and keepalive
akahori
parents:
diff changeset
1 package christie.topology.manager.keepalive;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
2
fd944876257b add node and keepalive
akahori
parents:
diff changeset
3 public class RespondData {
fd944876257b add node and keepalive
akahori
parents:
diff changeset
4 public String from;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
5 public long time;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
6
fd944876257b add node and keepalive
akahori
parents:
diff changeset
7 public RespondData(String str, long t){
fd944876257b add node and keepalive
akahori
parents:
diff changeset
8 from = str;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
9 time = t;
fd944876257b add node and keepalive
akahori
parents:
diff changeset
10 }
fd944876257b add node and keepalive
akahori
parents:
diff changeset
11 }