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