X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=extension%2Fopenflowjava-extension-nicira%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowjava%2Fnx%2Fcodec%2Fmatch%2FAbstractMatchCodec.java;h=fe28a3c0e85f4aac56df5df1765988efdada0065;hb=1ed0bb5f2bffe9e1918df6febbb5add7bb5ace8e;hp=3e2d7116d072d014013d77bbad0af84bbac632d5;hpb=3b0fe0b9cc20ca0ba140d1e47935736a31d94d4e;p=openflowplugin.git diff --git a/extension/openflowjava-extension-nicira/src/main/java/org/opendaylight/openflowjava/nx/codec/match/AbstractMatchCodec.java b/extension/openflowjava-extension-nicira/src/main/java/org/opendaylight/openflowjava/nx/codec/match/AbstractMatchCodec.java index 3e2d7116d0..fe28a3c0e8 100644 --- a/extension/openflowjava-extension-nicira/src/main/java/org/opendaylight/openflowjava/nx/codec/match/AbstractMatchCodec.java +++ b/extension/openflowjava-extension-nicira/src/main/java/org/opendaylight/openflowjava/nx/codec/match/AbstractMatchCodec.java @@ -9,7 +9,6 @@ package org.opendaylight.openflowjava.nx.codec.match; import io.netty.buffer.ByteBuf; - import org.opendaylight.openflowjava.protocol.api.extensibility.HeaderDeserializer; import org.opendaylight.openflowjava.protocol.api.extensibility.HeaderSerializer; import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer; @@ -74,27 +73,27 @@ public abstract class AbstractMatchCodec implements } /** - * @return numeric representation of nxm_field + * Returns the numeric representation of nxm_field. */ public abstract int getNxmFieldCode(); /** - * @return numeric representation of oxm_class + * Returns the numeric representation of oxm_class. */ public abstract int getOxmClassCode(); /** - * @return match entry value length + * Returns the match entry value length. */ public abstract int getValueLength(); /** - * @return nxm_field class + * Returns the nxm_field class. */ public abstract Class getNxmField(); /** - * @return oxm_class class + * Returns the oxm_class class. */ public abstract Class getOxmClass();