Fix to remove camel case for Northbound API
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / core / Tables.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   Tables.java
17  *
18  * @brief  Class representing tables
19  *
20  * Describes supported # of datapath tables
21  */
22 @XmlRootElement
23 public class Tables extends Property {
24         private static final long serialVersionUID = 1L;
25     @XmlElement(name="value")
26     private byte tablesValue;
27
28     public static final String TablesPropName = "tables";
29     /**
30      * Construct a Tables property
31      *
32      * @param tables the Tables
33      * @return Constructed object
34      */
35     public Tables(byte tables) {
36         super(TablesPropName);
37         this.tablesValue = tables;
38     }
39
40     /*
41      * Private constructor used for JAXB mapping
42      */
43     private Tables() {
44         super(TablesPropName);
45         this.tablesValue = 0;
46     }
47
48     @Override
49     public Tables clone() {
50         return new Tables(this.tablesValue);
51     }
52
53     public byte getValue() {
54         return this.tablesValue;
55     }
56
57     @Override
58     public int hashCode() {
59         final int prime = 31;
60         int result = super.hashCode();
61         result = prime * result + tablesValue;
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         Tables other = (Tables) obj;
74         if (tablesValue != other.tablesValue)
75             return false;
76         return true;
77     }
78
79     @Override
80     public String toString() {
81         return "Tables[" + tablesValue + "]";
82     }
83 }