summaryrefslogtreecommitdiffstats
path: root/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/impl/orchestration/OrchestrationTemplateFileHandler.java
blob: 5e006a29bd4dd7eae6dfea74e4488f24feef81c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.sdc.vendorsoftwareproduct.impl.orchestration;

import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
import org.openecomp.sdc.vendorsoftwareproduct.services.filedatastructuremodule.CandidateService;
import org.openecomp.sdc.vendorsoftwareproduct.types.UploadFileResponse;

import java.io.InputStream;

public interface OrchestrationTemplateFileHandler {

  UploadFileResponse upload(VspDetails vspDetails, InputStream fileToUpload,
                            String fileSuffix, String networkPackageName,
                            CandidateService candidateService);
}