[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-software-product-lib / openecomp-sdc-vendor-software-product-api / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / types / CandidateDataEntityTo.java
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 org.openecomp.core.utilities.file.FileContentHandler;
24 import org.openecomp.sdc.datatypes.error.ErrorMessage;
25 import org.openecomp.sdc.heat.datatypes.structure.HeatStructureTree;
26 import org.openecomp.sdc.versioning.dao.types.Version;
27
28 import java.util.HashMap;
29 import java.util.List;
30 import java.util.Map;
31
32 public class CandidateDataEntityTo {
33   private final String vspId;
34   private final String user;
35 //  private final UploadFileResponse uploadFileResponse;
36   private Map<String, List<ErrorMessage>> errors = new HashMap<>();
37   private final byte[] uploadedFileData;
38   private final HeatStructureTree tree;
39   private final Version activeVersion;
40   private final FileContentHandler contentMap;
41
42   /**
43    * Instantiates a new Candidate data entity to.
44    *  @param vspId              the vsp id
45    * @param user               the user
46    * @param uploadedFileData   the uploaded file data
47    * @param tree               the tree
48    * @param contentMap         the content map
49    * @param activeVersion      the active version
50    */
51   public CandidateDataEntityTo(String vspId, String user,
52                                byte[] uploadedFileData, HeatStructureTree tree,
53                                FileContentHandler contentMap, Version activeVersion) {
54     this.vspId = vspId;
55     this.user = user;
56     this.errors = errors;
57     this.uploadedFileData = uploadedFileData;
58     this.tree = tree;
59     this.activeVersion = activeVersion;
60     this.contentMap = contentMap;
61   }
62
63   public String getVspId() {
64     return vspId;
65   }
66
67   public String getUser() {
68     return user;
69   }
70
71   public byte[] getUploadedFileData() {
72     return uploadedFileData;
73   }
74
75   public HeatStructureTree getTree() {
76     return tree;
77   }
78
79   public Version getActiveVersion() {
80     return activeVersion;
81   }
82
83   public FileContentHandler getContentMap() {
84     return contentMap;
85   }
86
87   public Map<String, List<ErrorMessage>> getErrors() {return errors;}
88
89   public void setErrors(Map<String, List<ErrorMessage>> errors) {this.errors = errors;}
90 }