Revert "Checkstyle enforcer"
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / action / SetVlanCfi.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.action;
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  * Set vlan CFI action
19  *
20  */
21 @XmlRootElement
22 @XmlAccessorType(XmlAccessType.NONE)
23
24 public class SetVlanCfi extends Action {
25         @XmlElement
26     private int cfi;
27
28     /* Dummy constructor for JAXB */
29     private SetVlanCfi () {
30     }
31
32     public SetVlanCfi(int cfi) {
33         type = ActionType.SET_VLAN_CFI;
34         this.cfi = cfi;
35         checkValue(cfi);
36     }
37
38     /**
39      * Returns the 802.1q CFI value that this action will set
40      * @return
41      */
42     public int getCfi() {
43         return cfi;
44     }
45
46     @Override
47     public boolean equals(Object obj) {
48         if (this == obj)
49             return true;
50         if (!super.equals(obj))
51             return false;
52         if (getClass() != obj.getClass())
53             return false;
54         SetVlanCfi other = (SetVlanCfi) obj;
55         if (cfi != other.cfi)
56             return false;
57         return true;
58     }
59
60     @Override
61     public int hashCode() {
62         final int prime = 31;
63         int result = super.hashCode();
64         result = prime * result + cfi;
65         return result;
66     }
67
68     @Override
69     public String toString() {
70         return type + "[cfi = " + Integer.toHexString(cfi) + "]";
71     }
72 }