1 package org.opencomp.simulator.presetGenerator.presets.sdc;
3 import org.springframework.http.HttpMethod;
6 * Created by itzikliderman on 21/12/2017.
8 public class PresetSDCGetServiceToscaModelGet extends SdcPresetWithModelVersionId {
12 public PresetSDCGetServiceToscaModelGet(String modelVersionId, String file) {
13 super(modelVersionId);
17 public HttpMethod getReqMethod() {
18 return HttpMethod.GET;
22 public String getReqPath() {
23 return super.getReqPath()+"/toscaModel";
27 public String getFile() {