3a535e125e877e830dc59dfd8ed4ad53c36ef629
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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=========================================================
19  */
20
21 package org.openecomp.sdc.vendorsoftwareproduct.types;
22
23 import java.util.HashMap;
24 import java.util.List;
25 import java.util.Map;
26 import lombok.Getter;
27 import lombok.Setter;
28 import org.openecomp.core.utilities.file.FileContentHandler;
29 import org.openecomp.sdc.datatypes.error.ErrorMessage;
30 import org.openecomp.sdc.heat.datatypes.structure.HeatStructureTree;
31 import org.openecomp.sdc.versioning.dao.types.Version;
32
33 @Getter
34 public class CandidateDataEntityTo {
35
36     private final String vspId;
37     private final Version version;
38     private final byte[] uploadedFileData;
39     private final HeatStructureTree tree;
40     private final FileContentHandler contentMap;
41     @Setter
42     private Map<String, List<ErrorMessage>> errors = new HashMap<>();
43
44     /**
45      * Instantiates a new Candidate data entity to.
46      *
47      * @param vspId            the vsp id
48      * @param uploadedFileData the uploaded file data
49      * @param tree             the tree
50      * @param contentMap       the content map
51      */
52     public CandidateDataEntityTo(String vspId, Version version, byte[] uploadedFileData,
53                                  HeatStructureTree tree, FileContentHandler contentMap) {
54         this.vspId = vspId;
55         this.version = version;
56         this.uploadedFileData = uploadedFileData;
57         this.tree = tree;
58         this.contentMap = contentMap;
59     }
60
61 }