5c315debffc2a044eaadb9bf63609929498b3a41
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / action / SetVlanPcp.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 PCP action
22  */
23 @XmlRootElement
24 @XmlAccessorType(XmlAccessType.NONE)
25
26 public class SetVlanPcp extends Action {
27         @XmlElement
28     private int pcp;
29
30         private SetVlanPcp() {
31                 
32         }
33         
34     public SetVlanPcp(int pcp) {
35         type = ActionType.SET_VLAN_PCP;
36         this.pcp = pcp;
37         checkValue(pcp);
38     }
39
40     /**
41      * Returns the value of the vlan PCP this action will set
42      * @return int
43      */
44     public int getPcp() {
45         return pcp;
46     }
47
48     @Override
49     public boolean equals(Object other) {
50         return EqualsBuilder.reflectionEquals(this, other);
51     }
52
53     @Override
54     public int hashCode() {
55         return HashCodeBuilder.reflectionHashCode(this);
56     }
57
58     @Override
59     public String toString() {
60         return type + "[pcp = " + Integer.toHexString(pcp) + "]";
61     }
62 }