blob: 0a9f0e0dcd539c4e59ff54f7ad28ef826d3fab7f [file] [log] [blame]
Madan Jampani312a2982014-10-14 21:07:16 -07001package org.onlab.onos.store.host.impl;
2
3import org.onlab.onos.store.cluster.messaging.MessageSubject;
4
5public final class GossipHostStoreMessageSubjects {
6 private GossipHostStoreMessageSubjects() {}
Yuta HIGUCHI5fa3dc02014-10-15 17:08:13 -07007
8 public static final MessageSubject HOST_UPDATED
9 = new MessageSubject("peer-host-updated");
10 public static final MessageSubject HOST_REMOVED
11 = new MessageSubject("peer-host-removed");
12 public static final MessageSubject HOST_ANTI_ENTROPY_ADVERTISEMENT
13 = new MessageSubject("host-enti-entropy-advertisement");;
Madan Jampani312a2982014-10-14 21:07:16 -070014}