X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Faction%2FSetTpDst.java;h=32cffa57efc3d39d30774f3dd805348250b6c7b6;hb=d7d5c4d3e7eaed528961081718c47a0960517ace;hp=c32c346307a8fb3d0ebb8aca9c9387ac24eac096;hpb=541d0a36997f292bb037a2199463431eee538358;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpDst.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpDst.java index c32c346307..32cffa57ef 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpDst.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpDst.java @@ -1,4 +1,3 @@ - /* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * @@ -19,13 +18,14 @@ import javax.xml.bind.annotation.XmlRootElement; */ @XmlRootElement @XmlAccessorType(XmlAccessType.NONE) - public class SetTpDst extends Action { - @XmlElement + private static final long serialVersionUID = 1L; + @XmlElement private int port; /* Dummy constructor for JAXB */ - private SetTpDst () { + @SuppressWarnings("unused") + private SetTpDst() { } public SetTpDst(int port) { @@ -36,6 +36,7 @@ public class SetTpDst extends Action { /** * Returns the transport port the action will set + * * @return */ public int getPort() { @@ -44,15 +45,19 @@ public class SetTpDst extends Action { @Override public boolean equals(Object obj) { - if (this == obj) + if (this == obj) { return true; - if (!super.equals(obj)) + } + if (!super.equals(obj)) { return false; - if (getClass() != obj.getClass()) + } + if (getClass() != obj.getClass()) { return false; + } SetTpDst other = (SetTpDst) obj; - if (port != other.port) + if (port != other.port) { return false; + } return true; }