Remove redundant methods from codebase
[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 (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Copyright (c) 2017-2019 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
22 package org.onap.aai.babel.xml.generator.data;
23
24 import java.util.ArrayList;
25 import java.util.HashMap;
26 import java.util.List;
27 import java.util.Map;
28
29 public class GenerationData {
30
31     List<Artifact> resultData = new ArrayList<>();
32     Map<String, List<String>> errorData = new HashMap<>();
33
34     public void add(Artifact generatedArtifact) {
35         resultData.add(generatedArtifact);
36     }
37
38     /**
39      * Add the error code to the list of error codes for the given ID.
40      *
41      * @param generatorId the generator id
42      * @param errorCode the error code
43      */
44     public void add(String generatorId, String errorCode) {
45         errorData.computeIfAbsent(generatorId, k -> new ArrayList<>());
46         errorData.get(generatorId).add(errorCode);
47     }
48
49     public List<Artifact> getResultData() {
50         return resultData;
51     }
52
53     public Map<String, List<String>> getErrorData() {
54         return errorData;
55     }
56 }