Initial opendaylight infrastructure commit!!
[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 import org.apache.commons.lang3.builder.EqualsBuilder;
18 import org.apache.commons.lang3.builder.HashCodeBuilder;
19
20 /**
21  * Set vlan id action
22  */
23
24 @XmlRootElement
25 @XmlAccessorType(XmlAccessType.NONE)
26
27 public class SetVlanId extends Action {
28         @XmlElement
29     private int vlanId;
30
31         private SetVlanId() {
32                 
33         }
34         
35     public SetVlanId(int vlanId) {
36         type = ActionType.SET_VLAN_ID;
37         this.vlanId = vlanId;
38         checkValue(vlanId);
39     }
40
41     /**
42      * Returns the vlan id this action will set
43      *
44      * @return int
45      */
46     public int getVlanId() {
47         return vlanId;
48     }
49
50     @Override
51     public boolean equals(Object other) {
52         return EqualsBuilder.reflectionEquals(this, other);
53     }
54
55     @Override
56     public int hashCode() {
57         return HashCodeBuilder.reflectionHashCode(this);
58     }
59
60     @Override
61     public String toString() {
62         return type + "[vlanId = " + vlanId + "]";
63     }
64 }