Initial opendaylight infrastructure commit!!
[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 import org.apache.commons.lang3.builder.EqualsBuilder;
18 import org.apache.commons.lang3.builder.HashCodeBuilder;
19
20 /**
21  * Set vlan CFI action
22  *
23  */
24 @XmlRootElement
25 @XmlAccessorType(XmlAccessType.NONE)
26
27 public class SetVlanCfi extends Action {
28         @XmlElement
29     private int cfi;
30
31     /* Dummy constructor for JAXB */
32     private SetVlanCfi () {
33     }
34
35     public SetVlanCfi(int cfi) {
36         type = ActionType.SET_VLAN_CFI;
37         this.cfi = cfi;
38         checkValue(cfi);
39     }
40
41     /**
42      * Returns the 802.1q CFI value that this action will set
43      * @return
44      */
45     public int getCfi() {
46         return cfi;
47     }
48
49     @Override
50     public boolean equals(Object other) {
51         return EqualsBuilder.reflectionEquals(this, other);
52     }
53
54     @Override
55     public int hashCode() {
56         return HashCodeBuilder.reflectionHashCode(this);
57     }
58
59     @Override
60     public String toString() {
61         return type + "[cfi = " + Integer.toHexString(cfi) + "]";
62     }
63 }