2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.onap.so.adapters.tasks.inventory;
23 import java.util.Optional;
24 import java.util.stream.Stream;
25 import org.onap.so.client.aai.AAIObjectType;
26 import org.onap.so.client.aai.AAIResourcesClient;
27 import org.onap.so.client.aai.entities.uri.AAIUriFactory;
28 import org.onap.so.objects.audit.AAIObjectAudit;
29 import org.onap.so.objects.audit.AAIObjectAuditList;
30 import org.springframework.stereotype.Component;
33 public class CreateAAIInventory {
35 private AAIResourcesClient aaiClient;
37 public void createInventory(AAIObjectAuditList auditList) throws InventoryException {
38 if (didAuditFailVserverLInterfaces(auditList)) {
39 throw new InventoryException("Audit failed for VServer or LInterface cannot write Sub-Interfaces");
41 auditList.getAuditList().parallelStream()
42 .filter(auditObject -> !auditObject.isDoesObjectExist()
43 && AAIObjectType.SUB_L_INTERFACE.typeName().equals(auditObject.getAaiObjectType()))
44 .forEach(auditObject -> getAaiClient().createIfNotExists(AAIUriFactory.createResourceFromExistingURI(
45 AAIObjectType.fromTypeName(auditObject.getAaiObjectType()), auditObject.getResourceURI()),
46 Optional.of(auditObject.getAaiObject())));
51 * @param auditHeatStackFailed
55 protected boolean didAuditFailVserverLInterfaces(AAIObjectAuditList auditList) {
56 Stream<AAIObjectAudit> issue = auditList.getAuditList().stream()
57 .filter(auditObject -> auditObject.getAaiObjectType().equals(AAIObjectType.VSERVER.typeName())
58 || auditObject.getAaiObjectType().equals(AAIObjectType.L_INTERFACE.typeName()));
60 return issue.filter(auditObject -> !auditObject.isDoesObjectExist()).findFirst().map(v -> true).orElse(false);
63 protected AAIResourcesClient getAaiClient() {
64 if (aaiClient == null)
65 return new AAIResourcesClient();
70 protected void setAaiClient(AAIResourcesClient aaiResource) {
71 aaiClient = aaiResource;