summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2018-06-27 17:20:16 +0200
committerMarek Gradzki <mgradzki@cisco.com>2018-06-28 06:11:34 +0000
commita03753e7f4551b2a24ed17e9c72bc51605c186ab (patch)
tree8021528c6bd670ce82326ea217bb344ff4ae95af
parentafa5703ec9fa1a831fd93e095f3374be96064a9c (diff)
lisp: fix sonar issues in SubtableDumpParams
Change-Id: Ic53723df24e8c373fab3f2a63d21de39c1fac156 Signed-off-by: Marek Gradzki <mgradzki@cisco.com> (cherry picked from commit 801ed98e2f6b6c3f82876e726aa120482210c427)
-rw-r--r--lisp/lisp2vpp/src/main/java/io/fd/hc2vpp/lisp/translate/read/dump/executor/params/SubtableDumpParams.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/lisp2vpp/src/main/java/io/fd/hc2vpp/lisp/translate/read/dump/executor/params/SubtableDumpParams.java b/lisp/lisp2vpp/src/main/java/io/fd/hc2vpp/lisp/translate/read/dump/executor/params/SubtableDumpParams.java
index d80ffd39c..8cef57845 100644
--- a/lisp/lisp2vpp/src/main/java/io/fd/hc2vpp/lisp/translate/read/dump/executor/params/SubtableDumpParams.java
+++ b/lisp/lisp2vpp/src/main/java/io/fd/hc2vpp/lisp/translate/read/dump/executor/params/SubtableDumpParams.java
@@ -16,8 +16,7 @@
package io.fd.hc2vpp.lisp.translate.read.dump.executor.params;
-import static com.google.common.base.Preconditions.checkNotNull;
-
+import io.fd.hc2vpp.common.translate.util.ByteDataTranslator;
import javax.annotation.Nonnull;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev171013.eid.table.grouping.eid.table.vni.table.BridgeDomainSubtable;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev171013.eid.table.grouping.eid.table.vni.table.VrfSubtable;
@@ -50,7 +49,7 @@ public final class SubtableDumpParams {
private final int value;
- private MapLevel(final int value) {
+ MapLevel(final int value) {
this.value = value;
}
@@ -59,12 +58,12 @@ public final class SubtableDumpParams {
}
}
- public static final class SubtableDumpParamsBuilder {
+ public static final class SubtableDumpParamsBuilder implements ByteDataTranslator {
private byte isL2;
public SubtableDumpParamsBuilder setL2(@Nonnull final MapLevel mapLevel) {
- isL2 = Integer.valueOf(checkNotNull(mapLevel, "Cannot set null map level").getValue()).byteValue();
+ isL2 = booleanToByte(MapLevel.L2.equals(mapLevel));
return this;
}