Merge "Refactored yang-maven-plugin. Updated tests. Removed backup files."
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / SupportedBandwidth.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.sal.core;
11
12 import javax.xml.bind.annotation.XmlRootElement;
13
14 /**
15  * @file   SupportedBandWidth.java
16  *
17  * @brief  Class representing supported bandwidth
18  *
19  * Describes Supported Bandwidth which could be of a link or whatever could have
20  * bandwidth as description. It's intended in multiple of bits per
21  * seconds.
22  */
23 @XmlRootElement
24 public class SupportedBandwidth extends Bandwidth {
25         private static final long serialVersionUID = 1L;
26         public static final String SupportedBandwidthPropName = "supportedBandwidth";
27         
28         public SupportedBandwidth(long value) {
29                 super(SupportedBandwidthPropName);
30                 this.bandwidthValue = value;
31         }
32         
33         /*
34      * Private constructor used for JAXB mapping
35      */
36     private SupportedBandwidth() {
37         super(SupportedBandwidthPropName);
38                 this.bandwidthValue = 0;
39     }
40         
41         public SupportedBandwidth clone() {
42                 return new SupportedBandwidth(this.bandwidthValue);  
43     }
44
45     @Override
46     public String toString() {
47         StringBuffer sb = new StringBuffer();
48         sb.append("SupportedBandWidth[");
49         sb.append(super.toString());
50         sb.append("]");
51         return sb.toString();
52     }
53
54
55 }