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.vendorsoftwareproduct.types;
23 import java.util.HashMap;
24 import java.util.List;
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;
34 public class CandidateDataEntityTo {
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;
42 private Map<String, List<ErrorMessage>> errors = new HashMap<>();
45 * Instantiates a new Candidate data entity to.
47 * @param vspId the vsp id
48 * @param uploadedFileData the uploaded file data
49 * @param tree the tree
50 * @param contentMap the content map
52 public CandidateDataEntityTo(String vspId, Version version, byte[] uploadedFileData,
53 HeatStructureTree tree, FileContentHandler contentMap) {
55 this.version = version;
56 this.uploadedFileData = uploadedFileData;
58 this.contentMap = contentMap;