8c23da8cfa2c80bf79d71296de60ff0b9d68d2f4
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / action / Output.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.core.NodeConnector;
20
21 /**
22  * Represents the action of sending the packet out of a physical port
23  *
24  *
25  *
26  */
27 @XmlRootElement
28 @XmlAccessorType(XmlAccessType.NONE)
29
30 public class Output extends Action {
31         @XmlElement
32     private NodeConnector port;
33
34     /* Dummy constructor for JAXB */
35     private Output () {
36     }
37
38     public Output(NodeConnector port) {
39         type = ActionType.OUTPUT;
40         this.port = port;
41         //checkValue(port);
42     }
43
44     public NodeConnector 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.toString() + "]";
61     }
62 }