blob: c57e9ebcf7a4b67bae9551c5b21cca2e6f167e3f [file] [log] [blame]
Jon Hallfa132292017-10-24 11:11:24 -07001/*
2 * Copyright 2014-present Open Networking Foundation
3 *
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 */
16package org.onosproject.store.flow.impl;
17
18import org.onosproject.store.cluster.messaging.MessageSubject;
19
20/**
21 * MessageSubjects used by ECFlowRuleStore peer-peer communication.
22 */
23public final class ECFlowRuleStoreMessageSubjects {
24 private ECFlowRuleStoreMessageSubjects() {}
25
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");
31
32 public static final MessageSubject GET_DEVICE_FLOW_ENTRIES
33 = new MessageSubject("peer-forward-get-device-flow-entries");
34
Jordan Halterman281dbf32018-06-15 17:46:28 -070035 public static final MessageSubject GET_DEVICE_FLOW_COUNT
36 = new MessageSubject("peer-forward-get-flow-count");
37
Jon Hallfa132292017-10-24 11:11:24 -070038 public static final MessageSubject REMOVE_FLOW_ENTRY
39 = new MessageSubject("peer-forward-remove-flow-entry");
40
41 public static final MessageSubject REMOTE_APPLY_COMPLETED
42 = new MessageSubject("peer-apply-completed");
43
44 public static final MessageSubject FLOW_TABLE_BACKUP
45 = new MessageSubject("peer-flow-table-backup");
Jon Hallfa132292017-10-24 11:11:24 -070046}