e31aac8fd4f2694d814afb51d19ceca5ef7133d4
[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.oran.test.mock;
19
20 import java.util.ArrayList;
21 import java.util.List;
22
23 import org.eclipse.jdt.annotation.Nullable;
24 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.NetconfConfigChange;
25 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.changed.by.parms.ChangedBy;
26 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.notifications.rev120206.netconf.config.change.Edit;
27 import org.opendaylight.yangtools.yang.binding.Augmentation;
28 import org.opendaylight.yangtools.yang.binding.DataContainer;
29
30 public class NetconfConfigChangeMock implements NetconfConfigChange {
31
32     @Override
33     public Class<? extends DataContainer> getImplementedInterface() {
34         // TODO Auto-generated method stub
35         return null;
36     }
37
38     @Override
39     public <E$$ extends Augmentation<NetconfConfigChange>> @Nullable E$$ augmentation(Class<E$$> augmentationType) {
40         // TODO Auto-generated method stub
41         return null;
42     }
43
44     @Override
45     public @Nullable ChangedBy getChangedBy() {
46         // TODO Auto-generated method stub
47         return null;
48     }
49
50     @Override
51     public @Nullable Datastore getDatastore() {
52         // TODO Auto-generated method stub
53         return null;
54     }
55
56     @Override
57     public @Nullable List<Edit> getEdit() {
58         List<Edit> list = new ArrayList<Edit>();
59         return list;
60     }
61
62 }