Remove BaseCallHomeTopology
[netconf.git] / apps / callhome-provider / src / main / java / org / opendaylight / netconf / callhome / mount / CallHomeTopology.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 package org.opendaylight.netconf.callhome.mount;
9
10 import io.netty.util.concurrent.EventExecutor;
11 import org.opendaylight.aaa.encrypt.AAAEncryptionService;
12 import org.opendaylight.controller.config.threadpool.ScheduledThreadPool;
13 import org.opendaylight.controller.config.threadpool.ThreadPool;
14 import org.opendaylight.mdsal.binding.api.DataBroker;
15 import org.opendaylight.mdsal.dom.api.DOMMountPointService;
16 import org.opendaylight.netconf.client.NetconfClientDispatcher;
17 import org.opendaylight.netconf.sal.connect.api.DeviceActionFactory;
18 import org.opendaylight.netconf.sal.connect.api.SchemaResourceManager;
19 import org.opendaylight.netconf.sal.connect.netconf.schema.mapping.BaseNetconfSchemas;
20 import org.opendaylight.netconf.topology.spi.AbstractNetconfTopology;
21
22 // Non-final for mocking
23 public class CallHomeTopology extends AbstractNetconfTopology {
24
25     public CallHomeTopology(final String topologyId, final NetconfClientDispatcher clientDispatcher,
26                             final EventExecutor eventExecutor,
27                             final ScheduledThreadPool keepaliveExecutor, final ThreadPool processingExecutor,
28                             final SchemaResourceManager schemaRepositoryProvider,
29                             final DataBroker dataBroker, final DOMMountPointService mountPointService,
30                             final AAAEncryptionService encryptionService, final BaseNetconfSchemas baseSchemas,
31                             final DeviceActionFactory deviceActionFactory) {
32         super(topologyId, clientDispatcher, eventExecutor,
33                 keepaliveExecutor, processingExecutor, schemaRepositoryProvider,
34                 dataBroker, mountPointService, encryptionService, deviceActionFactory, baseSchemas);
35     }
36 }