2 * ============LICENSE_START========================================================================
3 * ONAP : ccsdk feature sdnr wt
4 * =================================================================================================
5 * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
6 * =================================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8 * in compliance with the License. You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software distributed under the License
13 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14 * or implied. See the License for the specific language governing permissions and limitations under
16 * ============LICENSE_END==========================================================================
18 package org.onap.ccsdk.features.sdnr.wt.devicemanager.adaptermanager.test.mock;
20 import com.google.common.util.concurrent.ListenableFuture;
21 import java.util.List;
22 import org.eclipse.jdt.annotation.NonNull;
23 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.Capabilities;
24 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
25 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.TransactionUtils;
26 import org.opendaylight.mdsal.binding.api.DataBroker;
27 import org.opendaylight.mdsal.binding.api.MountPoint;
28 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netconf.notification._1._0.rev080714.CreateSubscriptionOutput;
29 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netmod.notification.rev080714.netconf.streams.Stream;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.NetconfNode;
31 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
32 import org.opendaylight.yangtools.concepts.ListenerRegistration;
33 import org.opendaylight.yangtools.yang.binding.NotificationListener;
34 import org.opendaylight.yangtools.yang.common.RpcResult;
38 public class NetconfAccessorMock implements NetconfAccessor {
40 private final NodeId nNodeId;
41 private final NetconfNode netconfNode;
42 private final MountPoint mountpoint;
43 private final DataBroker netconfNodeDataBroker;
45 public NetconfAccessorMock(NodeId nNodeId, NetconfNode netconfNode, MountPoint mountpoint,
46 DataBroker netconfNodeDataBroker) {
47 this.nNodeId = nNodeId;
48 this.netconfNode = netconfNode;
49 this.mountpoint = mountpoint;
50 this.netconfNodeDataBroker = netconfNodeDataBroker;
54 public NodeId getNodeId() {
59 public NetconfNode getNetconfNode() {
64 public Capabilities getCapabilites() {
69 public DataBroker getDataBroker() {
70 return netconfNodeDataBroker;
74 public MountPoint getMountpoint() {
79 public TransactionUtils getTransactionUtils() {
84 public <T extends NotificationListener> ListenerRegistration<NotificationListener> doRegisterNotificationListener(
85 @NonNull T listener) {
90 public ListenableFuture<RpcResult<CreateSubscriptionOutput>> registerNotificationsStream(String streamName) {
95 public void registerNotificationsStream(List<Stream> streamList) {
96 // TODO Auto-generated method stub
101 public boolean isNCNotificationsSupported() {
102 // TODO Auto-generated method stub
107 public List<Stream> getNotificationStreams() {
108 // TODO Auto-generated method stub