blob: ca833b839fc78168864e4ffbfb711bb715a3356e [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");
Madan Jampani117aaae2014-10-23 10:04:05 -070015 public static final MessageSubject GET_FLOW_ENTRY = new MessageSubject("peer-forward-get-flow-entry");
Madan Jampani38b250d2014-10-17 11:02:38 -070016}