BUG 8839: Revert "Make netconf utilize encrypted passwords only"
[netconf.git] / netconf / callhome-provider / src / main / java / org / opendaylight / netconf / callhome / mount / BaseCallHomeTopology.java
1 /*
2  * Copyright (c) 2016 Brocade Communication Systems and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.netconf.callhome.mount;
10
11 import io.netty.util.concurrent.EventExecutor;
12 import org.opendaylight.controller.config.threadpool.ScheduledThreadPool;
13 import org.opendaylight.controller.config.threadpool.ThreadPool;
14 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
15 import org.opendaylight.controller.md.sal.dom.api.DOMMountPointService;
16 import org.opendaylight.netconf.client.NetconfClientDispatcher;
17 import org.opendaylight.netconf.topology.AbstractNetconfTopology;
18 import org.opendaylight.netconf.topology.api.SchemaRepositoryProvider;
19
20 abstract class BaseCallHomeTopology extends AbstractNetconfTopology {
21
22     protected DOMMountPointService mountPointService = null;
23
24     BaseCallHomeTopology(final String topologyId, final NetconfClientDispatcher clientDispatcher,
25                          final EventExecutor eventExecutor,
26                          final ScheduledThreadPool keepaliveExecutor,
27                          final ThreadPool processingExecutor,
28                          final SchemaRepositoryProvider schemaRepositoryProvider,
29                          final DataBroker dataBroker,
30                          final DOMMountPointService mountPointService) {
31         super(topologyId, clientDispatcher, eventExecutor, keepaliveExecutor,
32                 processingExecutor, schemaRepositoryProvider, dataBroker, mountPointService);
33         this.mountPointService = mountPointService;
34     }
35 }