Create VES client example for domain 'notification'
[oam.git] / features / devicemanager / x-ran / ru-fh / provider / src / main / java / org / oransc / oam / features / devicemanager / xran / impl / XRanNetworkElementFactory.java
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
19 package org.oransc.oam.features.devicemanager.xran.impl;
20
21 import java.util.Optional;
22 import org.eclipse.jdt.annotation.NonNull;
23 import org.onap.ccsdk.features.sdnr.wt.devicemanager.ne.factory.NetworkElementFactory;
24 import org.onap.ccsdk.features.sdnr.wt.devicemanager.ne.service.NetworkElement;
25 import org.onap.ccsdk.features.sdnr.wt.devicemanager.service.DeviceManagerServiceProvider;
26 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.NetconfAccessor;
27 import org.opendaylight.yang.gen.v1.urn.xran.hardware._1._0.rev180720.XRANRADIO;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30
31 public class XRanNetworkElementFactory implements NetworkElementFactory {
32
33     private static final Logger log = LoggerFactory.getLogger(XRanNetworkElementFactory.class);
34
35     @Override
36     public Optional<NetworkElement> create(@NonNull NetconfAccessor acessor, @NonNull DeviceManagerServiceProvider serviceProvider) {
37         if (acessor.getCapabilites().isSupportingNamespace(XRANRADIO.QNAME)) {
38             log.info("Create device {} ",XRanNetworkElement.class.getName());
39             return Optional.of(new XRanNetworkElement(acessor, serviceProvider.getDataProvider()));
40         } else {
41             return Optional.empty();
42         }
43     }
44 }