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