Change to update node properties
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / Buffers.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.XmlElement;
13 import javax.xml.bind.annotation.XmlRootElement;
14
15 import org.apache.commons.lang3.builder.EqualsBuilder;
16 import org.apache.commons.lang3.builder.HashCodeBuilder;
17
18 /**
19  * @file   Buffers.java
20  *
21  * @brief  Class representing buffers
22  *
23  * Describes supported buffers (#packets)
24  */
25 @XmlRootElement
26 public class Buffers extends Property {
27         private static final long serialVersionUID = 1L;
28     @XmlElement
29     private int buffersValue;
30     
31     public static final String BuffersPropName = "buffers";
32     
33     /**
34      * Construct a Buffers property
35      *
36      * @param buffers the Buffers 
37      * @return Constructed object
38      */
39     public Buffers(int buffers) {
40         super(BuffersPropName);
41         this.buffersValue = buffers;
42     }
43
44     /*
45      * Private constructor used for JAXB mapping
46      */
47     private Buffers() {
48         super(BuffersPropName);
49         this.buffersValue = 0;
50     }
51
52     public Buffers clone() {
53         return new Buffers(this.buffersValue);
54     }
55
56     public int getValue() {
57         return this.buffersValue;
58     }
59     
60     @Override
61     public int hashCode() {
62         return HashCodeBuilder.reflectionHashCode(this);
63     }
64
65     @Override
66     public boolean equals(Object obj) {
67         return EqualsBuilder.reflectionEquals(this, obj);
68     }
69
70     @Override
71     public String toString() {
72         return "Buffers[" + buffersValue + "]";
73     }
74 }