Seven more Equals/HashCode/StringBuilder replacements
[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 /**
16  * @file   Buffers.java
17  *
18  * @brief  Class representing buffers
19  *
20  * Describes supported buffers (#packets)
21  */
22 @XmlRootElement
23 public class Buffers extends Property {
24         private static final long serialVersionUID = 1L;
25     @XmlElement
26     private int buffersValue;
27     
28     public static final String BuffersPropName = "buffers";
29     
30     /**
31      * Construct a Buffers property
32      *
33      * @param buffers the Buffers 
34      * @return Constructed object
35      */
36     public Buffers(int buffers) {
37         super(BuffersPropName);
38         this.buffersValue = buffers;
39     }
40
41     /*
42      * Private constructor used for JAXB mapping
43      */
44     private Buffers() {
45         super(BuffersPropName);
46         this.buffersValue = 0;
47     }
48
49     public Buffers clone() {
50         return new Buffers(this.buffersValue);
51     }
52
53     public int getValue() {
54         return this.buffersValue;
55     }
56     
57     @Override
58     public int hashCode() {
59         final int prime = 31;
60         int result = super.hashCode();
61         result = prime * result + buffersValue;
62         return result;
63     }
64
65     @Override
66     public boolean equals(Object obj) {
67         if (this == obj)
68             return true;
69         if (!super.equals(obj))
70             return false;
71         if (getClass() != obj.getClass())
72             return false;
73         Buffers other = (Buffers) obj;
74         if (buffersValue != other.buffersValue)
75             return false;
76         return true;
77     }
78
79     @Override
80     public String toString() {
81         return "Buffers[" + buffersValue + "]";
82     }
83 }