Make sure invokeOperation is set once
[controller.git] / opendaylight / adsal / 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.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlElement;
15 import javax.xml.bind.annotation.XmlRootElement;
16
17 /**
18  * @file   Tables.java
19  *
20  * @brief  Class representing tables
21  *
22  * Describes supported # of datapath tables
23  */
24 @XmlRootElement
25 @XmlAccessorType(XmlAccessType.NONE)
26 @Deprecated
27 public class Tables extends Property {
28         private static final long serialVersionUID = 1L;
29     @XmlElement(name="value")
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     @Override
53     public Tables clone() {
54         return new Tables(this.tablesValue);
55     }
56
57     public byte getValue() {
58         return this.tablesValue;
59     }
60
61     @Override
62     public int hashCode() {
63         final int prime = 31;
64         int result = super.hashCode();
65         result = prime * result + tablesValue;
66         return result;
67     }
68
69     @Override
70     public boolean equals(Object obj) {
71         if (this == obj)
72             return true;
73         if (!super.equals(obj))
74             return false;
75         if (getClass() != obj.getClass())
76             return false;
77         Tables other = (Tables) obj;
78         if (tablesValue != other.tablesValue)
79             return false;
80         return true;
81     }
82
83     @Override
84     public String toString() {
85         return "Tables[" + tablesValue + "]";
86     }
87
88     @Override
89     public String getStringValue() {
90         return String.format("%02x", tablesValue);
91     }
92 }