blob: a43dad69d1b73e5c03d524866648dfb37857a101 [file] [log] [blame]
Madan Jampani38b250d2014-10-17 11:02:38 -07001package org.onlab.onos.store.flow.impl;
2
3import org.onlab.onos.store.cluster.messaging.MessageSubject;
4
5/**
6 * MessageSubjects used by DistributedFlowRuleStore peer-peer communication.
7 */
8public final class FlowStoreMessageSubjects {
9 private FlowStoreMessageSubjects() {}
10 public static final MessageSubject STORE_FLOW_RULE = new MessageSubject("peer-forward-store-flow-rule");
11 public static final MessageSubject DELETE_FLOW_RULE = new MessageSubject("peer-forward-delete-flow-rule");
12 public static final MessageSubject ADD_OR_UPDATE_FLOW_RULE =
13 new MessageSubject("peer-forward-add-or-update-flow-rule");
14 public static final MessageSubject REMOVE_FLOW_RULE = new MessageSubject("peer-forward-remove-flow-rule");
15}