Make sure invokeOperation is set once
[controller.git] / opendaylight / adsal / sal / api / src / main / java / org / opendaylight / controller / sal / action / SetDlDst.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.sal.action;
10
11 import java.util.Arrays;
12
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlElement;
16 import javax.xml.bind.annotation.XmlRootElement;
17
18 import org.opendaylight.controller.sal.utils.HexEncode;
19
20 /**
21  * Set destination datalayer address action
22  */
23 @XmlRootElement
24 @XmlAccessorType(XmlAccessType.NONE)
25 @Deprecated
26 public class SetDlDst extends Action {
27     private static final long serialVersionUID = 1L;
28     private byte[] address;
29
30     /* Dummy constructor for JAXB */
31     @SuppressWarnings("unused")
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         }
59         if (!super.equals(obj)) {
60             return false;
61         }
62         if (getClass() != obj.getClass()) {
63             return false;
64         }
65         SetDlDst other = (SetDlDst) obj;
66         if (!Arrays.equals(address, other.address)) {
67             return false;
68         }
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 }