Update mountpoint-state-provider
[ccsdk/features.git] / sdnr / wt / mountpoint-state-provider / provider / src / test / java / org / onap / ccsdk / features / sdnr / wt / mountpointstateprovider / test / mock / NetconfAccessorMock.java
1 /*
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
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
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
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18 package org.onap.ccsdk.features.sdnr.wt.mountpointstateprovider.test.mock;
19
20 import com.google.common.util.concurrent.ListenableFuture;
21 import org.eclipse.jdt.annotation.NonNull;
22 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.Capabilities;
23 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
24 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.TransactionUtils;
25 import org.opendaylight.mdsal.binding.api.DataBroker;
26 import org.opendaylight.mdsal.binding.api.MountPoint;
27 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.netconf.notification._1._0.rev080714.CreateSubscriptionOutput;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.NetconfNode;
29 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
30 import org.opendaylight.yangtools.concepts.ListenerRegistration;
31 import org.opendaylight.yangtools.yang.binding.NotificationListener;
32 import org.opendaylight.yangtools.yang.common.RpcResult;
33
34 /**
35  */
36 public class NetconfAccessorMock implements NetconfAccessor {
37
38     private final NodeId nNodeId;
39     private final NetconfNode netconfNode;
40
41     public NetconfAccessorMock(NodeId nNodeId, NetconfNode netconfNode) {
42         this.nNodeId = nNodeId;
43         this.netconfNode = netconfNode;
44     }
45
46     @Override
47     public NodeId getNodeId() {
48         return nNodeId;
49     }
50
51     @Override
52     public NetconfNode getNetconfNode() {
53         return netconfNode;
54     }
55
56     @Override
57     public Capabilities getCapabilites() {
58         return null;
59     }
60
61     @Override
62     public DataBroker getDataBroker() {
63         return null;
64     }
65
66     @Override
67     public MountPoint getMountpoint() {
68         return null;
69     }
70
71     @Override
72     public TransactionUtils getTransactionUtils() {
73         return null;
74     }
75
76     @Override
77     public <T extends NotificationListener> ListenerRegistration<NotificationListener> doRegisterNotificationListener(
78             @NonNull T listener) {
79         return null;
80     }
81
82     @Override
83     public ListenableFuture<RpcResult<CreateSubscriptionOutput>> registerNotificationsStream(String streamName) {
84         return null;
85     }
86
87 }