Checkstyle enforcer
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / action / SetVlanId.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 vlan id action
19  */
20
21 @XmlRootElement
22 @XmlAccessorType(XmlAccessType.NONE)
23
24 public class SetVlanId extends Action {
25         @XmlElement
26     private int vlanId;
27
28         private SetVlanId() {
29
30         }
31
32     public SetVlanId(int vlanId) {
33         type = ActionType.SET_VLAN_ID;
34         this.vlanId = vlanId;
35         checkValue(vlanId);
36     }
37
38     /**
39      * Returns the vlan id this action will set
40      *
41      * @return int
42      */
43     public int getVlanId() {
44         return vlanId;
45     }
46
47     @Override
48     public boolean equals(Object obj) {
49         if (this == obj)
50             return true;
51         if (!super.equals(obj))
52             return false;
53         if (getClass() != obj.getClass())
54             return false;
55         SetVlanId other = (SetVlanId) obj;
56         if (vlanId != other.vlanId)
57             return false;
58         return true;
59     }
60
61     @Override
62     public int hashCode() {
63         final int prime = 31;
64         int result = super.hashCode();
65         result = prime * result + vlanId;
66         return result;
67     }
68
69     @Override
70     public String toString() {
71         return type + "[vlanId = " + vlanId + "]";
72     }
73 }