62dec0cd58198dfcbfa0b77e89a28ab9b97e1d88
[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 /**
18  * Set network TOS action
19  */
20 @XmlRootElement
21 @XmlAccessorType(XmlAccessType.NONE)
22
23 public class SetNwTos extends Action {
24         @XmlElement
25     private int tos;
26
27     /* Dummy constructor for JAXB */
28     private SetNwTos () {
29     }
30
31     public SetNwTos(int tos) {
32         type = ActionType.SET_NW_TOS;
33         this.tos = tos;
34         checkValue(tos);
35     }
36
37     /**
38      * Returns the network TOS value which the action will set
39      *
40      * @return int
41      */
42     public int getNwTos() {
43         return tos;
44     }
45
46     @Override
47     public boolean equals(Object obj) {
48         if (this == obj)
49             return true;
50         if (!super.equals(obj))
51             return false;
52         if (getClass() != obj.getClass())
53             return false;
54         SetNwTos other = (SetNwTos) obj;
55         if (tos != other.tos)
56             return false;
57         return true;
58     }
59
60     @Override
61     public int hashCode() {
62         final int prime = 31;
63         int result = super.hashCode();
64         result = prime * result + tos;
65         return result;
66     }
67
68     @Override
69     public String toString() {
70         return type + "[tos = 0x" + Integer.toHexString(tos) + "]";
71     }
72 }