blob: cf7aadab71726c8062b1f225f19fb7c5d82fdace [file] [log] [blame]
Thejaswi N K46f36d22016-06-13 21:02:50 +05301/*
2 * Copyright 2016-present 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.flow.manager;
17
18import org.onosproject.flowapi.ExtFlowContainer;
19
20/**
21 * Bgp flow service application.
22 */
23public interface BgpFlowService {
24
25 /**
26 * Bgp flow rule create interface.
27 *
28 * @param container flow container class
29 * @return true if success else false
30 */
31 boolean onBgpFlowCreated(ExtFlowContainer container);
32
33 /**
34 * Bgp flow rule delete interface.
35 *
36 * @param container flow container class
37 * @return true if success else false
38 */
39 boolean onBgpFlowDeleted(ExtFlowContainer container);
40}