3 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
10 package org.opendaylight.controller.sal.action;
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;
17 import org.apache.commons.lang3.builder.EqualsBuilder;
18 import org.apache.commons.lang3.builder.HashCodeBuilder;
25 @XmlAccessorType(XmlAccessType.NONE)
27 public class SetVlanCfi extends Action {
31 /* Dummy constructor for JAXB */
32 private SetVlanCfi () {
35 public SetVlanCfi(int cfi) {
36 type = ActionType.SET_VLAN_CFI;
42 * Returns the 802.1q CFI value that this action will set
50 public boolean equals(Object other) {
51 return EqualsBuilder.reflectionEquals(this, other);
55 public int hashCode() {
56 return HashCodeBuilder.reflectionHashCode(this);
60 public String toString() {
61 return type + "[cfi = " + Integer.toHexString(cfi) + "]";