X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Faction%2FSetTpSrc.java;h=faa32978c18688305b7daaf72a8dc8c09139c427;hp=d56f33d51ef0f9a55b0995de325e3caab3b1f5ed;hb=432ddf481f3bb6c297b1353f76a797fc9ef0e454;hpb=e2ac8294fb64f05cc6bef9c01c27ba8439fe0e3a diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpSrc.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpSrc.java index d56f33d51e..faa32978c1 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpSrc.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetTpSrc.java @@ -1,4 +1,3 @@ - /* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * @@ -20,13 +19,14 @@ import javax.xml.bind.annotation.XmlRootElement; */ @XmlRootElement @XmlAccessorType(XmlAccessType.NONE) - public class SetTpSrc extends Action { - @XmlElement + private static final long serialVersionUID = 1L; + @XmlElement private int port; /* Dummy constructor for JAXB */ - private SetTpSrc () { + @SuppressWarnings("unused") + private SetTpSrc() { } public SetTpSrc(int port) { @@ -37,6 +37,7 @@ public class SetTpSrc extends Action { /** * Returns the transport port the action will set + * * @return */ public int getPort() { @@ -45,15 +46,19 @@ public class SetTpSrc 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; + } SetTpSrc other = (SetTpSrc) obj; - if (port != other.port) + if (port != other.port) { return false; + } return true; }