ee32a43100fb1af0a8e4dfb62614d21ca30b3185
[ccsdk/features.git] /
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 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
43     public NetconfAccessorMock(NodeId nNodeId, NetconfNode netconfNode) {
44         this.nNodeId = nNodeId;
45         this.netconfNode = netconfNode;
46     }
47
48     @Override
49     public NodeId getNodeId() {
50         return nNodeId;
51     }
52
53     @Override
54     public NetconfNode getNetconfNode() {
55         return netconfNode;
56     }
57
58     @Override
59     public Capabilities getCapabilites() {
60         return null;
61     }
62
63     @Override
64     public DataBroker getDataBroker() {
65         return null;
66     }
67
68     @Override
69     public MountPoint getMountpoint() {
70         return null;
71     }
72
73     @Override
74     public TransactionUtils getTransactionUtils() {
75         return null;
76     }
77
78     @Override
79     public <T extends NotificationListener> ListenerRegistration<NotificationListener> doRegisterNotificationListener(
80             @NonNull T listener) {
81         return null;
82     }
83
84     @Override
85     public ListenableFuture<RpcResult<CreateSubscriptionOutput>> registerNotificationsStream(String streamName) {
86         return null;
87     }
88
89     @Override
90     public void registerNotificationsStream(List<Stream> streamList) {
91         // TODO Auto-generated method stub
92
93     }
94
95     @Override
96     public boolean isNCNotificationsSupported() {
97         // TODO Auto-generated method stub
98         return false;
99     }
100
101     @Override
102     public List<Stream> getNotificationStreams() {
103         // TODO Auto-generated method stub
104         return null;
105     }
106
107 }