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 java.util.Optional;
24 import org.eclipse.jdt.annotation.NonNull;
25 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.Capabilities;
26 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
27 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfBindingAccessor;
28 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfDomAccessor;
29 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfNotifications;
30 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.TransactionUtils;
31 import org.opendaylight.mdsal.binding.api.DataBroker;
32 import org.opendaylight.mdsal.binding.api.MountPoint;
33 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netconf.notification._1._0.rev080714.CreateSubscriptionOutput;
34 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netmod.notification.rev080714.netconf.streams.Stream;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.NetconfNode;
36 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
37 import org.opendaylight.yangtools.concepts.ListenerRegistration;
38 import org.opendaylight.yangtools.yang.binding.NotificationListener;
39 import org.opendaylight.yangtools.yang.common.RpcResult;
43 public class NetconfAccessorMock implements NetconfBindingAccessor, NetconfNotifications {
45 private final NodeId nNodeId;
46 private final NetconfNode netconfNode;
47 private final MountPoint mountpoint;
48 private final DataBroker netconfNodeDataBroker;
50 public NetconfAccessorMock(NodeId nNodeId, NetconfNode netconfNode, MountPoint mountpoint,
51 DataBroker netconfNodeDataBroker) {
52 this.nNodeId = nNodeId;
53 this.netconfNode = netconfNode;
54 this.mountpoint = mountpoint;
55 this.netconfNodeDataBroker = netconfNodeDataBroker;
59 public NodeId getNodeId() {
64 public NetconfNode getNetconfNode() {
69 public Capabilities getCapabilites() {
74 public DataBroker getDataBroker() {
75 return netconfNodeDataBroker;
79 public MountPoint getMountpoint() {
84 public TransactionUtils getTransactionUtils() {
89 public <T extends NotificationListener> ListenerRegistration<NotificationListener> doRegisterNotificationListener(
90 @NonNull T listener) {
95 public ListenableFuture<RpcResult<CreateSubscriptionOutput>> registerNotificationsStream(String streamName) {
100 public void registerNotificationsStream(List<Stream> streamList) {
101 // TODO Auto-generated method stub
106 public boolean isNCNotificationsSupported() {
107 // TODO Auto-generated method stub
112 public List<Stream> getNotificationStreams() {
113 // TODO Auto-generated method stub
118 public Optional<NetconfBindingAccessor> getNetconfBindingAccessor() {
119 // TODO Auto-generated method stub
124 public Optional<NetconfDomAccessor> getNetconfDomAccessor() {
125 // TODO Auto-generated method stub
130 public Optional<NetconfNotifications> getNotificationAccessor() {
131 // TODO Auto-generated method stub
136 public boolean isNotificationsSupported() {
137 // TODO Auto-generated method stub