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