X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fmatch%2FMatchField.java;h=bd5ef2bafbd4134e74469824962b6e18f42edaeb;hb=ff1b4a79cca00743a00c3b0b1100bd0ab2b2fb31;hp=175a11718bff431f80e113da0da837ccadd47cc2;hpb=5ac5f9d4d8f549f152c802de461c766588b992c4;p=controller.git diff --git a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/match/MatchField.java b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/match/MatchField.java index 175a11718b..bd5ef2bafb 100644 --- a/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/match/MatchField.java +++ b/opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/match/MatchField.java @@ -20,7 +20,7 @@ import org.slf4j.LoggerFactory; /** * Represents the generic matching field - * + * */ @XmlRootElement @@ -42,7 +42,7 @@ public class MatchField implements Cloneable, Serializable { /** * Mask based match constructor - * + * * @param type * @param value * @param mask @@ -59,7 +59,7 @@ public class MatchField implements Cloneable, Serializable { /** * Full match constructor - * + * * @param type * @param value */ @@ -73,7 +73,7 @@ public class MatchField implements Cloneable, Serializable { /** * Returns the value set for this match field - * + * * @return */ public Object getValue() { @@ -87,7 +87,7 @@ public class MatchField implements Cloneable, Serializable { /** * Returns the type field this match field object is for - * + * * @return */ public MatchType getType() { @@ -102,7 +102,7 @@ public class MatchField implements Cloneable, Serializable { /** * Returns the mask value set for this field match A null mask means this is * a full match - * + * * @return */ public Object getMask() { @@ -116,7 +116,7 @@ public class MatchField implements Cloneable, Serializable { /** * Returns the bitmask set for this field match - * + * * @return */ public long getBitMask() { @@ -125,7 +125,7 @@ public class MatchField implements Cloneable, Serializable { /** * Returns whether the field match configuration is valid or not - * + * * @return */ public boolean isValid() { @@ -188,7 +188,7 @@ public class MatchField implements Cloneable, Serializable { } } } catch (CloneNotSupportedException e) { - e.printStackTrace(); + logger.error("",e); } return cloned; }