2 * ============LICENSE_START=======================================================
3 * ONAP : ccsdk features
4 * ================================================================================
5 * Copyright (C) 2023 highstreet technologies GmbH Intellectual Property.
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
22 package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.dom.impl.qnames;
24 import java.util.List;
25 import java.util.Optional;
26 import org.onap.ccsdk.features.sdnr.wt.netconfnodestateservice.Capabilities;
27 import org.opendaylight.yangtools.yang.common.QName;
28 import org.opendaylight.yangtools.yang.common.QNameModule;
30 public class DevicemanagerQNames {
32 protected QNameModule qNameModule;
33 protected String revision;
35 public DevicemanagerQNames(QNameModule qnm, String revision) {
36 this.qNameModule = qnm;
37 this.revision = revision;
40 public QName getQName(String localName) {
41 return QName.create(qNameModule, localName);
44 public String getNamespaceRevision() {
48 public QNameModule getQNameModule() {
52 public static Optional<DevicemanagerQNames> getDevicemanagerQNames(Capabilities capabilities,
53 List<QNameModule> modules) {
55 for (QNameModule module : modules) {
57 if (capabilities.isSupportingNamespaceAndRevision(module.getNamespace().toString(),
58 module.getRevision().toString())) {
59 String namespaceRevision = module.getRevision().toString();
60 return Optional.of(new DevicemanagerQNames(module, namespaceRevision));
64 return Optional.empty();