X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=apps%2Fnetconf-topology%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Ftopology%2Fspi%2FAbstractNetconfTopology.java;h=df5605d01842b1f6774faec6253d456dacd53d9a;hb=fdc5756e29c8f0717fd3c178ca201d07338f98c1;hp=93f818cd78f5f0b84b598d3b65a04cb2cdb1d592;hpb=fcc3c2ce4a69c124879e80f2ce844a952bdc6322;p=netconf.git diff --git a/apps/netconf-topology/src/main/java/org/opendaylight/netconf/topology/spi/AbstractNetconfTopology.java b/apps/netconf-topology/src/main/java/org/opendaylight/netconf/topology/spi/AbstractNetconfTopology.java index 93f818cd78..df5605d018 100644 --- a/apps/netconf-topology/src/main/java/org/opendaylight/netconf/topology/spi/AbstractNetconfTopology.java +++ b/apps/netconf-topology/src/main/java/org/opendaylight/netconf/topology/spi/AbstractNetconfTopology.java @@ -10,7 +10,6 @@ package org.opendaylight.netconf.topology.spi; import static java.util.Objects.requireNonNull; import com.google.common.annotations.VisibleForTesting; -import io.netty.util.Timer; import java.util.HashMap; import java.util.NoSuchElementException; import java.util.concurrent.ExecutionException; @@ -23,6 +22,7 @@ import org.opendaylight.netconf.client.mdsal.api.DeviceActionFactory; import org.opendaylight.netconf.client.mdsal.api.RemoteDeviceHandler; import org.opendaylight.netconf.client.mdsal.api.RemoteDeviceId; import org.opendaylight.netconf.client.mdsal.api.SchemaResourceManager; +import org.opendaylight.netconf.common.NetconfTimer; import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.optional.rev221225.NetconfNodeAugmentedOptional; import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev231121.NetconfNode; import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NetworkTopology; @@ -45,7 +45,7 @@ public abstract class AbstractNetconfTopology { private final SchemaResourceManager schemaManager; private final BaseNetconfSchemas baseSchemas; private final NetconfClientConfigurationBuilderFactory builderFactory; - private final Timer timer; + private final NetconfTimer timer; protected final NetconfTopologySchemaAssembler schemaAssembler; protected final DataBroker dataBroker; @@ -53,7 +53,7 @@ public abstract class AbstractNetconfTopology { protected final String topologyId; protected AbstractNetconfTopology(final String topologyId, final NetconfClientFactory clientFactory, - final Timer timer, final NetconfTopologySchemaAssembler schemaAssembler, + final NetconfTimer timer, final NetconfTopologySchemaAssembler schemaAssembler, final SchemaResourceManager schemaManager, final DataBroker dataBroker, final DOMMountPointService mountPointService, final NetconfClientConfigurationBuilderFactory builderFactory, final DeviceActionFactory deviceActionFactory, final BaseNetconfSchemas baseSchemas) {