Add collaboration feature
[sdc.git] / openecomp-be / backend / openecomp-sdc-vendor-software-product-manager / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / impl / orchestration / OrchestrationTemplateFileHandler.java
1 package org.openecomp.sdc.vendorsoftwareproduct.impl.orchestration;
2
3 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
4 import org.openecomp.sdc.vendorsoftwareproduct.services.filedatastructuremodule.CandidateService;
5 import org.openecomp.sdc.vendorsoftwareproduct.types.UploadFileResponse;
6
7 import java.io.InputStream;
8
9 public interface OrchestrationTemplateFileHandler {
10
11   UploadFileResponse upload(VspDetails vspDetails, InputStream fileToUpload,
12                             String fileSuffix, String networkPackageName,
13                             CandidateService candidateService);
14 }