Incorporate the ECOMP SDC Artefact Generator code
[aai/babel.git] / src / main / java / org / onap / aai / babel / xml / generator / data / GenerationData.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 European Software Marketing Ltd.
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
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
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=========================================================
20  */
21 package org.onap.aai.babel.xml.generator.data;
22
23 import java.util.ArrayList;
24 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27
28 public class GenerationData {
29
30     List<Artifact> resultData = new ArrayList<>();
31     Map<String, List<String>> errorData = new HashMap<>();
32
33     public void add(List<Artifact> resultData, Map<String, List<String>> errorData) {
34         this.resultData.addAll(resultData);
35         this.errorData.putAll(errorData);
36     }
37
38     public void add(Artifact generatedArtifact) {
39         resultData.add(generatedArtifact);
40     }
41
42     /**
43      * Add the error code to the list of error codes for the given ID
44      *
45      * @param generatorId the generator id
46      * @param errorCode the error code
47      */
48     public void add(String generatorId, String errorCode) {
49         errorData.computeIfAbsent(generatorId, k -> new ArrayList<>());
50         errorData.get(generatorId).add(errorCode);
51     }
52
53     public void add(GenerationData generationData) {
54         this.resultData.addAll(generationData.resultData);
55         this.errorData.putAll(generationData.errorData);
56     }
57
58     public List<Artifact> getResultData() {
59         return resultData;
60     }
61
62     public Map<String, List<String>> getErrorData() {
63         return errorData;
64     }
65 }