2 * ============LICENSE_START========================================================================
3 * ONAP : ccsdk feature sdnr wt
4 * =================================================================================================
5 * Copyright (C) 2019 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.mountpointstateprovider.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;
43 public NetconfAccessorMock(NodeId nNodeId, NetconfNode netconfNode) {
44 this.nNodeId = nNodeId;
45 this.netconfNode = netconfNode;
49 public NodeId getNodeId() {
54 public NetconfNode getNetconfNode() {
59 public Capabilities getCapabilites() {
64 public DataBroker getDataBroker() {
69 public MountPoint getMountpoint() {
74 public TransactionUtils getTransactionUtils() {
79 public <T extends NotificationListener> ListenerRegistration<NotificationListener> doRegisterNotificationListener(
80 @NonNull T listener) {
85 public ListenableFuture<RpcResult<CreateSubscriptionOutput>> registerNotificationsStream(String streamName) {
90 public void registerNotificationsStream(List<Stream> streamList) {
91 // TODO Auto-generated method stub
96 public boolean isNCNotificationsSupported() {
97 // TODO Auto-generated method stub
102 public List<Stream> getNotificationStreams() {
103 // TODO Auto-generated method stub