X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-protocolbuffer-encoding%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fnode%2Futils%2FNodeIdentifierFactory.java;h=9669c99602246beb9e0d02d6340a0d2122b080df;hp=3250fadcf57dff837bcd396e1ef3c956049fc589;hb=de3e413b633b7555ae8f3fe2ec163dbb7dda5da8;hpb=b35aa25e0c3a91fc71e778d9c9393e91036246e3 diff --git a/opendaylight/md-sal/sal-protocolbuffer-encoding/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/NodeIdentifierFactory.java b/opendaylight/md-sal/sal-protocolbuffer-encoding/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/NodeIdentifierFactory.java index 3250fadcf5..9669c99602 100644 --- a/opendaylight/md-sal/sal-protocolbuffer-encoding/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/NodeIdentifierFactory.java +++ b/opendaylight/md-sal/sal-protocolbuffer-encoding/src/main/java/org/opendaylight/controller/cluster/datastore/node/utils/NodeIdentifierFactory.java @@ -1,14 +1,14 @@ package org.opendaylight.controller.cluster.datastore.node.utils; -import org.opendaylight.yangtools.yang.data.api.InstanceIdentifier; +import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import java.util.HashMap; import java.util.Map; public class NodeIdentifierFactory { - private static final Map cache = new HashMap<>(); - public static InstanceIdentifier.PathArgument getArgument(String id){ - InstanceIdentifier.PathArgument value = cache.get(id); + private static final Map cache = new HashMap<>(); + public static YangInstanceIdentifier.PathArgument getArgument(String id){ + YangInstanceIdentifier.PathArgument value = cache.get(id); if(value == null){ synchronized (cache){ value = cache.get(id); @@ -21,7 +21,7 @@ public class NodeIdentifierFactory { return value; } - private static InstanceIdentifier.PathArgument createPathArgument(String id){ + private static YangInstanceIdentifier.PathArgument createPathArgument(String id){ final NodeIdentifierWithPredicatesGenerator nodeIdentifierWithPredicatesGenerator = new NodeIdentifierWithPredicatesGenerator(id); if(nodeIdentifierWithPredicatesGenerator.matches()){