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