Merge "Refactor frontend JS"
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / flowprogrammer / IPluginInFlowProgrammerService.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.sal.flowprogrammer;
10
11 import org.opendaylight.controller.sal.core.Node;
12 import org.opendaylight.controller.sal.utils.Status;
13
14 /**
15  * @file IPluginOutFlowProgrammer.java
16  * 
17  * @brief Flow programmer interface to be implemented by protocol plugins
18  */
19 public interface IPluginInFlowProgrammerService {
20     /**
21      * Add a flow to the network node
22      * 
23      * @param node
24      * @param flow
25      */
26     Status addFlow(Node node, Flow flow);
27
28     /**
29      * Modify existing flow on the switch
30      * 
31      * @param node
32      * @param flow
33      */
34     Status modifyFlow(Node node, Flow oldFlow, Flow newFlow);
35
36     /**
37      * Remove the flow from the network node
38      * 
39      * @param node
40      * @param flow
41      */
42     Status removeFlow(Node node, Flow flow);
43
44     /**
45      * Remove all flows present on the network node
46      * 
47      * @param node
48      */
49     Status removeAllFlows(Node node);
50 }