Add sdnr wt devicemanager
[ccsdk/features.git] / sdnr / wt / devicemanager / provider / src / test / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / test / mock / MountPointMock.java
1 /*******************************************************************************
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk feature sdnr wt sdnr-wt-devicemanager-provider
4  *  ================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
6  * All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  ******************************************************************************/
21
22 package org.onap.ccsdk.features.sdnr.wt.devicemanager.test.mock;
23
24 import com.google.common.base.Optional;
25 import org.opendaylight.controller.md.sal.binding.api.BindingService;
26 import org.opendaylight.controller.md.sal.binding.api.MountPoint;
27 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
28
29 /**
30  * @author herbert
31  *
32  */
33 public class MountPointMock implements MountPoint {
34
35     private boolean databrokerAbsent = true;
36     private final DataBrokerMountpointMock dataBroker = new DataBrokerMountpointMock();
37
38     @Override
39     public InstanceIdentifier<?> getIdentifier() {
40         return null;
41     }
42
43     @SuppressWarnings("unchecked")
44     @Override
45     public <T extends BindingService> Optional<T> getService(Class<T> service) {
46
47         System.out.println("Requested mountpoint service: "+service.getSimpleName()+" databrokerAbsent state: "+databrokerAbsent);
48
49         Optional<?> res = Optional.absent();
50         if (service.isInstance(dataBroker)) {
51             res =  databrokerAbsent ? Optional.absent() : Optional.of(dataBroker);
52         } else if (service.isInstance(org.opendaylight.controller.sal.binding.api.RpcConsumerRegistry.class)) {
53             res = Optional.of(new RpcConsumerRegistryMock());
54         }
55         return (Optional<T>)res;
56     }
57
58     public void setDatabrokerAbsent( boolean state) {
59         this.databrokerAbsent = state;
60     }
61
62 }