Merge "ISSUE Opendaylight controller to get node description from OF description...
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / action / SetNwTos.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 network TOS action
22  */
23 @XmlRootElement
24 @XmlAccessorType(XmlAccessType.NONE)
25
26 public class SetNwTos extends Action {
27         @XmlElement
28     private int tos;
29
30     /* Dummy constructor for JAXB */
31     private SetNwTos () {
32     }
33
34     public SetNwTos(int tos) {
35         type = ActionType.SET_NW_TOS;
36         this.tos = tos;
37         checkValue(tos);
38     }
39
40     /**
41      * Returns the network TOS value which the action will set
42      *
43      * @return int
44      */
45     public int getNwTos() {
46         return tos;
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 + "[tos = 0x" + Integer.toHexString(tos) + "]";
62     }
63 }