91f5c431b999ad8a2b6783f5abe72bb4b55e4ad6
[ccsdk/features.git] /
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.adaptermanager.test.mock;
19
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;
35
36 /**
37  */
38 public class NetconfAccessorMock implements NetconfAccessor {
39
40     private final NodeId nNodeId;
41     private final NetconfNode netconfNode;
42     private final MountPoint mountpoint;
43     private final DataBroker netconfNodeDataBroker;
44
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;
51     }
52
53     @Override
54     public NodeId getNodeId() {
55         return nNodeId;
56     }
57
58     @Override
59     public NetconfNode getNetconfNode() {
60         return netconfNode;
61     }
62
63     @Override
64     public Capabilities getCapabilites() {
65         return null;
66     }
67
68     @Override
69     public DataBroker getDataBroker() {
70         return netconfNodeDataBroker;
71     }
72
73     @Override
74     public MountPoint getMountpoint() {
75         return mountpoint;
76     }
77
78     @Override
79     public TransactionUtils getTransactionUtils() {
80         return null;
81     }
82
83     @Override
84     public <T extends NotificationListener> ListenerRegistration<NotificationListener> doRegisterNotificationListener(
85             @NonNull T listener) {
86         return null;
87     }
88
89     @Override
90     public ListenableFuture<RpcResult<CreateSubscriptionOutput>> registerNotificationsStream(String streamName) {
91         return null;
92     }
93
94     @Override
95     public void registerNotificationsStream(List<Stream> streamList) {
96         // TODO Auto-generated method stub
97
98     }
99
100     @Override
101     public boolean isNCNotificationsSupported() {
102         // TODO Auto-generated method stub
103         return false;
104     }
105
106     @Override
107     public List<Stream> getNotificationStreams() {
108         // TODO Auto-generated method stub
109         return null;
110     }
111
112 }