X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2Ftest%2Fstructures%2FLstItem.java;h=10582de08374e4302765437da257c44af7b7ce01;hb=85ed33d7b90013a393fedcf4947307fbc7248fc2;hp=9eb58b5344186690484658ffa489fc376df811cd;hpb=d468a5db1e6fe2c3949d3f6227c0645c6777ecb5;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/structures/LstItem.java b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/structures/LstItem.java index 9eb58b5344..10582de083 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/structures/LstItem.java +++ b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/structures/LstItem.java @@ -1,6 +1,7 @@ package org.opendaylight.controller.sal.restconf.impl.test.structures; -import java.util.*; +import java.util.HashMap; +import java.util.Map; public class LstItem { String lstName; @@ -42,7 +43,7 @@ public class LstItem { return this; } - public LstItem addLf(String name, String value) { + public LstItem addLf(String name, Object value) { lfs.put(name, new Lf(name, value)); return this; }