Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / action / SetDlType.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 import org.opendaylight.controller.sal.utils.EtherTypes;
20
21 /**
22  * Set ethertype/length field action
23  */
24
25 @XmlRootElement
26 @XmlAccessorType(XmlAccessType.NONE)
27
28 public class SetDlType extends Action {
29         @XmlElement
30     private int dlType;
31
32     /* Dummy constructor for JAXB */
33     private SetDlType () {
34     }
35
36     public SetDlType(int dlType) {
37         type = ActionType.SET_DL_TYPE;
38         this.dlType = dlType;
39         checkValue(dlType);
40     }
41
42     public SetDlType(EtherTypes dlType) {
43         type = ActionType.SET_DL_TYPE;
44         this.dlType = dlType.intValue();
45         checkValue(this.dlType);
46     }
47
48     /**
49      * Returns the ethertype/lenght value that this action will set
50      *
51      * @return byte[]
52      */
53     public int getDlType() {
54         return dlType;
55     }
56
57     @Override
58     public boolean equals(Object other) {
59         return EqualsBuilder.reflectionEquals(this, other);
60     }
61
62     @Override
63     public int hashCode() {
64         return HashCodeBuilder.reflectionHashCode(this);
65     }
66
67     @Override
68     public String toString() {
69         return type + "[dlType = 0x" + Integer.toHexString(dlType) + "]";
70     }
71 }