adapt parents to guilin and sodium
[oam.git] / features / devicemanager / o-ran / ru-fh / provider / src / test / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / oran / test / mock / NetconfAccessorMock.java
1 /*
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
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.devicemanager.oran.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     private final MountPoint mountpoint;
41     private final DataBroker netconfNodeDataBroker;
42
43     public NetconfAccessorMock(NodeId nNodeId, NetconfNode netconfNode, MountPoint mountpoint,
44             DataBroker netconfNodeDataBroker) {
45         this.nNodeId = nNodeId;
46         this.netconfNode = netconfNode;
47         this.mountpoint = mountpoint;
48         this.netconfNodeDataBroker = netconfNodeDataBroker;
49     }
50
51     @Override
52     public NodeId getNodeId() {
53         return nNodeId;
54     }
55
56     @Override
57     public NetconfNode getNetconfNode() {
58         return netconfNode;
59     }
60
61     @Override
62     public Capabilities getCapabilites() {
63         return null;
64     }
65
66     @Override
67     public DataBroker getDataBroker() {
68         return netconfNodeDataBroker;
69     }
70
71     @Override
72     public MountPoint getMountpoint() {
73         return mountpoint;
74     }
75
76     @Override
77     public TransactionUtils getTransactionUtils() {
78         return null;
79     }
80
81     @Override
82     public <T extends NotificationListener> ListenerRegistration<NotificationListener> doRegisterNotificationListener(
83             @NonNull T listener) {
84         return null;
85     }
86
87     @Override
88     public ListenableFuture<RpcResult<CreateSubscriptionOutput>> registerNotificationsStream(String streamName) {
89         return null;
90     }
91
92 }