migrate sdnr features to phosphorus
[ccsdk/features.git] / sdnr / wt / devicemanager-onap / onf14 / provider / src / main / java / org / onap / ccsdk / features / sdnr / wt / devicemanager / onf14 / impl / dataprovider / Onf14ToInternalDataModel.java
diff --git a/sdnr/wt/devicemanager-onap/onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/dataprovider/Onf14ToInternalDataModel.java b/sdnr/wt/devicemanager-onap/onf14/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/devicemanager/onf14/impl/dataprovider/Onf14ToInternalDataModel.java
deleted file mode 100644 (file)
index 52436da..0000000
+++ /dev/null
@@ -1,130 +0,0 @@
-/*
- * ============LICENSE_START========================================================================
- * ONAP : ccsdk feature sdnr wt
- * =================================================================================================
- * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property. All rights reserved.
- * =================================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
- * in compliance with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the License
- * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
- * or implied. See the License for the specific language governing permissions and limitations under
- * the License.
- * ============LICENSE_END==========================================================================
- */
-package org.onap.ccsdk.features.sdnr.wt.devicemanager.onf14.impl.dataprovider;
-
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.List;
-import java.util.Objects;
-import org.eclipse.jdt.annotation.NonNull;
-import org.eclipse.jdt.annotation.Nullable;
-import org.onap.ccsdk.features.sdnr.wt.common.YangHelper;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.Equipment;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.EquipmentInstance;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.EquipmentType;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.ManufacturedThing;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.ManufacturerProperties;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.UniversalId;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.equipment.ActualEquipment;
-import org.opendaylight.yang.gen.v1.urn.onf.yang.core.model._1._4.rev191127.equipment.ContainedHolder;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.Inventory;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.InventoryBuilder;
-import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
-import org.opendaylight.yangtools.yang.common.Uint32;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-/**
- * @author alexs
- *
- */
-public class Onf14ToInternalDataModel {
-
-    private static final Logger LOG = LoggerFactory.getLogger(Onf14ToInternalDataModel.class);
-
-    public Inventory getInternalEquipment(NodeId nodeId, Equipment currentEq, Equipment parentEq, long treeLevel) {
-
-        Objects.requireNonNull(nodeId);
-        Objects.requireNonNull(currentEq);
-
-        InventoryBuilder inventoryBuilder = new InventoryBuilder();
-        String parentUuid = parentEq != null ? parentEq.getUuid().getValue() : "None";
-
-        @Nullable
-        ActualEquipment component = currentEq.getActualEquipment();
-        if (component != null) {
-            // General
-            inventoryBuilder.setNodeId(nodeId.getValue());
-            inventoryBuilder.setTreeLevel(Uint32.valueOf(treeLevel));
-            inventoryBuilder.setUuid(currentEq.getUuid().getValue());
-            inventoryBuilder.setParentUuid(parentUuid);
-
-            List<String> containedHolderKeyList = new ArrayList<String>();
-            @NonNull
-            Collection<ContainedHolder> containedHolderList =
-                    YangHelper.getCollection(currentEq.nonnullContainedHolder());
-            for (ContainedHolder holder : containedHolderList) {
-                @Nullable
-                UniversalId occupyingFru = holder.getOccupyingFru();
-
-                if (occupyingFru != null) {
-                    containedHolderKeyList.add(occupyingFru.getValue());
-                }
-            }
-            inventoryBuilder.setContainedHolder(containedHolderKeyList);
-
-            @Nullable
-            ManufacturedThing manThing = component.getManufacturedThing();
-            if (manThing != null) {
-                // Manufacturer properties
-                @Nullable
-                ManufacturerProperties manProp = manThing.getManufacturerProperties();
-                if (manProp != null) {
-                    inventoryBuilder.setManufacturerName(manProp.getManufacturerName());
-                    inventoryBuilder.setManufacturerIdentifier(manProp.getManufacturerIdentifier());
-                } else {
-                    LOG.debug("manufacturer-properties is not present in Equipment with uuid={}",
-                            currentEq.getUuid().getValue());
-                }
-
-                // Equipment instance
-                @Nullable
-                EquipmentInstance eqInstance = manThing.getEquipmentInstance();
-                if (eqInstance != null) {
-                    inventoryBuilder.setSerial(eqInstance.getSerialNumber());
-                    inventoryBuilder.setDate(eqInstance.getManufactureDate().getValue());
-                } else {
-                    LOG.debug("equipment-instance is not present in Equipment with uuid={}",
-                            currentEq.getUuid().getValue());
-                }
-
-                // Equipment type
-                @Nullable
-                EquipmentType eqType = manThing.getEquipmentType();
-                if (eqType != null) {
-                    inventoryBuilder.setVersion(eqType.getVersion());
-                    inventoryBuilder.setDescription(eqType.getDescription());
-                    inventoryBuilder.setPartTypeId(eqType.getPartTypeIdentifier());
-                    inventoryBuilder.setModelIdentifier(eqType.getModelIdentifier());
-                    inventoryBuilder.setTypeName(eqType.getTypeName());
-                } else {
-                    LOG.debug("equipment-type is not present in Equipment with uuid={}",
-                            currentEq.getUuid().getValue());
-                }
-            } else {
-                LOG.debug("manufactured-thing is not present in Equipment with uuid={}",
-                        currentEq.getUuid().getValue());
-            }
-        } else {
-            LOG.debug("actual-equipment is not present in Equipment with uuid={}", currentEq.getUuid().getValue());
-        }
-
-        return inventoryBuilder.build();
-    }
-
-}