blob: 05cb9d7c27e58a3edd2c2422c666604bc042c782 [file] [log] [blame]
Hongtao Yin142b7582015-01-21 14:41:30 -08001/*
2 * Copyright 2015 Open Networking Laboratory
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.flowext.impl;
17
18import org.onosproject.store.cluster.messaging.MessageSubject;
19
20/**
21 * Experimental extension to the flow rule subsystem; still under development.
22 * MessageSubjects used by DefaultFlowRuleExtRouter peer-peer communication.
23 */
24public final class FlowExtRouterMessageSubjects {
25 private FlowExtRouterMessageSubjects() {
26 }
27
28 /**
29 * The subject of routing extended flow to specified device.
30 */
31 public static final MessageSubject APPLY_EXTEND_FLOWS
32 = new MessageSubject("peer-forward-apply-batch-extension");
33}