2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 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.openecomp.sdc.enrichment.impl.tosca;
23 import org.openecomp.sdc.datatypes.error.ErrorLevel;
24 import org.openecomp.sdc.datatypes.error.ErrorMessage;
25 import org.openecomp.sdc.enrichment.inter.Enricher;
26 import org.openecomp.sdc.tosca.datatypes.ToscaServiceModel;
28 import java.util.Arrays;
29 import java.util.HashMap;
30 import java.util.List;
33 public class ToscaEnricher extends Enricher {
35 public Map<String, List<ErrorMessage>> enrich() {
36 Map<String, List<ErrorMessage>> errors = new HashMap<>();
37 errors.putAll(enrichAbstractSubstitute());
38 errors.putAll(enrichPortMirroring());
43 private Map<String, List<ErrorMessage>> enrichAbstractSubstitute() {
44 Map<String, List<ErrorMessage>> enrichErrors = new HashMap<>();
46 ToscaServiceModel toscaModel = (ToscaServiceModel) model;
47 AbstractSubstituteToscaEnricher abstractSubstituteToscaEnricher =
48 new AbstractSubstituteToscaEnricher();
51 enrichErrors = abstractSubstituteToscaEnricher.enrich(toscaModel, data.getKey(),
54 enrichErrors.put("Tosca Enrich", Arrays.asList(new ErrorMessage(ErrorLevel.ERROR, e
60 private Map<String, List<ErrorMessage>> enrichPortMirroring() {
61 Map<String, List<ErrorMessage>> enrichErrors = new HashMap<>();
62 ToscaServiceModel toscaModel = (ToscaServiceModel) model;
63 PortMirroringEnricher portMirroringEnricher = new PortMirroringEnricher();
66 enrichErrors = portMirroringEnricher.enrich(toscaModel);
68 enrichErrors.put("Tosca Enrich", Arrays.asList(new ErrorMessage(ErrorLevel.ERROR, e