2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
9 package org.opendaylight.controller.sal.action;
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlRootElement;
20 @XmlAccessorType(XmlAccessType.NONE)
21 public class SetVlanPcp extends Action {
22 private static final long serialVersionUID = 1L;
26 @SuppressWarnings("unused")
27 private SetVlanPcp() {
31 public SetVlanPcp(int pcp) {
32 type = ActionType.SET_VLAN_PCP;
38 * Returns the value of the vlan PCP this action will set
47 public boolean equals(Object obj) {
51 if (!super.equals(obj)) {
54 if (getClass() != obj.getClass()) {
57 SetVlanPcp other = (SetVlanPcp) obj;
58 if (pcp != other.pcp) {
65 public int hashCode() {
67 int result = super.hashCode();
68 result = prime * result + pcp;
73 public String toString() {
74 return type + "[pcp = " + Integer.toHexString(pcp) + "]";