Send node details notification up to the application,
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / session / IGetBandwith.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 package org.opendaylight.openflowplugin.openflow.md.core.session;
9
10 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.PortGrouping;
11
12 /**
13  * Utility for extracting bandwith from port according to port version
14  * 
15  * @author jsebin 
16  * 
17  */
18 public interface IGetBandwith {
19
20         /**
21          * 
22          * @param port port group
23          * @return port bandwidth
24          */
25     public boolean getBandwidth(PortGrouping port);
26 }