Initial opendaylight infrastructure commit!!
[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 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.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 other) {
56         return EqualsBuilder.reflectionEquals(this, other);
57     }
58
59     @Override
60     public int hashCode() {
61         return HashCodeBuilder.reflectionHashCode(this);
62     }
63
64     @Override
65     public String toString() {
66         return type + "[address = " + HexEncode.bytesToHexString(address) + "]";
67     }
68 }