Merge "copyright header added"
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / session / FeaturesV10Bandwidth.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.Port;
11
12 /**
13  * 
14  * @author jsebin
15  *
16  * Singleton for extracting port features for OF 1.0    
17  */
18 public class FeaturesV10Bandwidth implements IGetBandwith {
19     
20     private static FeaturesV10Bandwidth instance = new FeaturesV10Bandwidth();
21     
22     private FeaturesV10Bandwidth() {}
23     
24     /**
25      * 
26      * @return instance of class
27      */
28     public static FeaturesV10Bandwidth getInstance(){
29         return instance;
30     }
31     
32     @Override
33     public boolean getBandwidth(Port port) {
34         return (port.getCurrentFeaturesV10().is_100mbFd() | port.getCurrentFeaturesV10().is_100mbHd() | port.getCurrentFeaturesV10().is_10gbFd() | 
35                 port.getCurrentFeaturesV10().is_10mbFd() | port.getCurrentFeaturesV10().is_10mbHd() | port.getCurrentFeaturesV10().is_1gbFd() | 
36                 port.getCurrentFeaturesV10().is_1gbHd() | port.getCurrentFeaturesV10().isAutoneg() | port.getCurrentFeaturesV10().isCopper() | 
37                 port.getCurrentFeaturesV10().isFiber() | port.getCurrentFeaturesV10().isPause() | port.getCurrentFeaturesV10().isPauseAsym());        
38     }
39     
40     
41
42 }