blob: 133197f0654446579cc15f40867eb30ab824ff9c [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.store.flow.impl;
Madan Jampani38b250d2014-10-17 11:02:38 -070017
Brian O'Connorabafb502014-12-02 22:26:20 -080018import org.onosproject.store.cluster.messaging.MessageSubject;
Madan Jampani38b250d2014-10-17 11:02:38 -070019
20/**
21 * MessageSubjects used by DistributedFlowRuleStore peer-peer communication.
22 */
23public final class FlowStoreMessageSubjects {
24 private FlowStoreMessageSubjects() {}
Yuta HIGUCHI9def0472014-10-23 15:51:10 -070025
26 public static final MessageSubject APPLY_BATCH_FLOWS
27 = new MessageSubject("peer-forward-apply-batch");
28
29 public static final MessageSubject GET_FLOW_ENTRY
30 = new MessageSubject("peer-forward-get-flow-entry");
Madan Jampanif5fdef02014-10-23 21:58:10 -070031
32 public static final MessageSubject GET_DEVICE_FLOW_ENTRIES
33 = new MessageSubject("peer-forward-get-device-flow-entries");
Yuta HIGUCHIdfa45c12014-11-24 18:38:53 -080034
35 public static final MessageSubject REMOVE_FLOW_ENTRY
36 = new MessageSubject("peer-forward-remove-flow-entry");
Brian O'Connor72cb19a2015-01-16 16:14:41 -080037
38 public static final MessageSubject REMOTE_APPLY_COMPLETED
Madan Jampani86940d92015-05-06 11:47:57 -070039 = new MessageSubject("peer-apply-completed");
40
41 public static final MessageSubject FLOW_TABLE_BACKUP
42 = new MessageSubject("peer-flow-table-backup");
Madan Jampani38b250d2014-10-17 11:02:38 -070043}