Checkstyle enforcer
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / action / SetDlSrc.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 java.util.Arrays;
13
14 import javax.xml.bind.annotation.XmlAccessType;
15 import javax.xml.bind.annotation.XmlAccessorType;
16 import javax.xml.bind.annotation.XmlElement;
17 import javax.xml.bind.annotation.XmlRootElement;
18
19 import org.opendaylight.controller.sal.utils.HexEncode;
20
21 /**
22  * Set source datalayer address action
23  *
24  */
25 @XmlRootElement
26 @XmlAccessorType(XmlAccessType.NONE)
27
28 public class SetDlSrc extends Action {
29     private byte[] address;
30
31     /* Dummy constructor for JAXB */
32     private SetDlSrc  () {
33     }
34
35     public SetDlSrc(byte[] dlAddress) {
36         type = ActionType.SET_DL_SRC;
37         if (dlAddress != null) {
38             this.address = dlAddress.clone();
39         } else {
40             this.address = null;
41         }
42     }
43
44     /**
45      * Returns the datalayer address that this action will set
46      *
47      * @return byte[]
48      */
49     public byte[] getDlAddress() {
50         return address.clone();
51     }
52
53     @XmlElement(name = "address")
54     public String getDlAddressString() {
55         return HexEncode.bytesToHexString(address);
56     }
57
58     @Override
59     public boolean equals(Object obj) {
60         if (this == obj)
61             return true;
62         if (!super.equals(obj))
63             return false;
64         if (getClass() != obj.getClass())
65             return false;
66         SetDlSrc other = (SetDlSrc) obj;
67         if (!Arrays.equals(address, other.address))
68             return false;
69         return true;
70     }
71
72     @Override
73     public int hashCode() {
74         final int prime = 31;
75         int result = super.hashCode();
76         result = prime * result + Arrays.hashCode(address);
77         return result;
78     }
79
80     @Override
81     public String toString() {
82         return type + "[address = " + HexEncode.bytesToHexString(address) + "]";
83     }
84 }