X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=mod%2Fbpgenerator%2Fonap%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fblueprintgenerator%2Fservice%2Fcommon%2FInterfacesService.java;h=c19ad09fcb99242327ec5c6fb8feb3d04e1f602f;hb=72c2d38329865afa6692454b4fb90ab6f8a70638;hp=a14204fa62d952c5abbf0e430e045aa07db88437;hpb=87f19cde0f6532f5138822fa6f188b763a123235;p=dcaegen2%2Fplatform.git diff --git a/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/InterfacesService.java b/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/InterfacesService.java index a14204f..c19ad09 100644 --- a/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/InterfacesService.java +++ b/mod/bpgenerator/onap/src/main/java/org/onap/blueprintgenerator/service/common/InterfacesService.java @@ -4,6 +4,7 @@ * * org.onap.dcae * * ================================================================================ * * Copyright (c) 2020 AT&T Intellectual Property. All rights reserved. + * * Copyright (c) 2021 Nokia. 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. @@ -30,7 +31,6 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.HashMap; -import java.util.LinkedHashMap; import java.util.Map; /** @@ -52,13 +52,13 @@ public class InterfacesService { * @return */ public Map createInterface( - Map> inputs, OnapComponentSpec onapComponentSpec) { + Map> inputs, OnapComponentSpec onapComponentSpec) { Map response = new HashMap<>(); Interfaces interfaces = new Interfaces(); Map startResponse = startService.createStart(inputs, onapComponentSpec); - inputs = (Map>) startResponse.get("inputs"); + inputs = (Map>) startResponse.get("inputs"); interfaces.setStart((Start) startResponse.get("start"));