X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fcommons%2Fliblldp%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fliblldp%2FLLDPTLV.java;fp=opendaylight%2Fcommons%2Fliblldp%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fliblldp%2FLLDPTLV.java;h=bc241928fb6994222362a1d5a360fc4362b2a212;hb=a81d98f692b80c45bce3fe6a87e731abfb012a9f;hp=3c5623475e20cf21b5afaf1db7df609c4642df40;hpb=8d8e440aa795660349714241ec64fdf4b462b378;p=controller.git diff --git a/opendaylight/commons/liblldp/src/main/java/org/opendaylight/controller/liblldp/LLDPTLV.java b/opendaylight/commons/liblldp/src/main/java/org/opendaylight/controller/liblldp/LLDPTLV.java index 3c5623475e..bc241928fb 100644 --- a/opendaylight/commons/liblldp/src/main/java/org/opendaylight/controller/liblldp/LLDPTLV.java +++ b/opendaylight/commons/liblldp/src/main/java/org/opendaylight/controller/liblldp/LLDPTLV.java @@ -121,7 +121,7 @@ public class LLDPTLV extends Packet { } /** - * @param byte - the type to set + * @param type the type to set * @return LLDPTLV */ public LLDPTLV setType(byte type) { @@ -131,7 +131,7 @@ public class LLDPTLV extends Packet { } /** - * @param short - the length to set + * @param length the length to set * @return LLDPTLV */ public LLDPTLV setLength(short length) { @@ -140,7 +140,7 @@ public class LLDPTLV extends Packet { } /** - * @param byte[] - the value to set + * @param value the value to set * @return LLDPTLV */ public LLDPTLV setValue(byte[] value) { @@ -266,10 +266,10 @@ public class LLDPTLV extends Packet { /** * Creates the custom TLV value including OUI, subtype and custom string * - * @param portId + * @param customString * port identifier string * @return the custom TLV value in byte array - * @see {@link #createCustomTLVValue(byte,String)} + * @see #createCustomTLVValue(byte[],byte[]) */ static public byte[] createCustomTLVValue(String customString) { byte[] customByteArray = customString.getBytes(Charset.defaultCharset()); @@ -279,7 +279,7 @@ public class LLDPTLV extends Packet { /** * Creates the custom TLV value including OUI, subtype and custom string * @param subtype openflow subtype - * @param portId + * @param customByteArray * port identifier string * @return the custom TLV value in byte array */