Added reserved port descriptions to comments matching them to the OF Spec in NodeConn...
[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 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   Tables.java
21  *
22  * @brief  Class representing tables
23  *
24  * Describes supported # of datapath tables
25  */
26 @XmlRootElement
27 public class Tables extends Property {
28         private static final long serialVersionUID = 1L;
29     @XmlElement
30     private byte tablesValue;
31     
32     public static final String TablesPropName = "tables";
33     /**
34      * Construct a Tables property
35      *
36      * @param tables the Tables 
37      * @return Constructed object
38      */
39     public Tables(byte tables) {
40         super(TablesPropName);
41         this.tablesValue = tables;
42     }
43
44     /*
45      * Private constructor used for JAXB mapping
46      */
47     private Tables() {
48         super(TablesPropName);
49         this.tablesValue = 0;
50     }
51
52     public Tables clone() {
53         return new Tables(this.tablesValue);
54     }
55
56     public byte getValue() {
57         return this.tablesValue;
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 "Tables[" + ReflectionToStringBuilder.toString(this) + "]";
73     }
74 }