Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / action / SetNwDst.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.net.InetAddress;
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.apache.commons.lang3.builder.EqualsBuilder;
20 import org.apache.commons.lang3.builder.HashCodeBuilder;
21
22 /**
23  * Set network destination address action
24  */
25
26 @XmlRootElement
27 @XmlAccessorType(XmlAccessType.NONE)
28
29 public class SetNwDst extends Action {
30     InetAddress address;
31
32     /* Dummy constructor for JAXB */
33     private SetNwDst  () {
34     }
35
36     public SetNwDst(InetAddress address) {
37         type = ActionType.SET_NW_DST;
38         this.address = address;
39     }
40
41     /**
42      * Returns the network address this action will set
43      *
44      * @return  InetAddress
45      */
46     public InetAddress getAddress() {
47         return address;
48     }
49     
50     @XmlElement (name="address")
51     public String getAddressAsString() {
52         return address.getHostAddress();
53     }
54
55     @Override
56     public boolean equals(Object other) {
57         return EqualsBuilder.reflectionEquals(this, other);
58     }
59
60     @Override
61     public int hashCode() {
62         return HashCodeBuilder.reflectionHashCode(this);
63     }
64
65     @Override
66     public String toString() {
67         return type + "[address = " + address + "]";
68     }
69 }