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%2FSetVlanPcp.java;h=4930d0721d07a9601603a85fd507644e15bd7f30;hp=1ee74fdf3f76b2d9d2a4fa5f75958d410653bbb4;hb=432ddf481f3bb6c297b1353f76a797fc9ef0e454;hpb=7c3362df780f30a47d0f6a7b7695360bbb5513bc diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetVlanPcp.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetVlanPcp.java index 1ee74fdf3f..4930d0721d 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetVlanPcp.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/action/SetVlanPcp.java @@ -1,4 +1,3 @@ - /* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * @@ -19,14 +18,15 @@ import javax.xml.bind.annotation.XmlRootElement; */ @XmlRootElement @XmlAccessorType(XmlAccessType.NONE) - public class SetVlanPcp extends Action { - @XmlElement + private static final long serialVersionUID = 1L; + @XmlElement private int pcp; - private SetVlanPcp() { + @SuppressWarnings("unused") + private SetVlanPcp() { - } + } public SetVlanPcp(int pcp) { type = ActionType.SET_VLAN_PCP; @@ -36,6 +36,7 @@ public class SetVlanPcp extends Action { /** * Returns the value of the vlan PCP this action will set + * * @return int */ public int getPcp() { @@ -44,15 +45,19 @@ public class SetVlanPcp 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; + } SetVlanPcp other = (SetVlanPcp) obj; - if (pcp != other.pcp) + if (pcp != other.pcp) { return false; + } return true; }