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