aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-types/src/main/java/org/openecomp/sdcrests/vendorsoftwareproducts/types/DeploymentFlavorCreationDto.java
blob: d4c3443deb4e52b247d50ee411cdcbf52571147b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.sdcrests.vendorsoftwareproducts.types;


public class DeploymentFlavorCreationDto {
  private String deploymentFlavorId;

  public String getDeploymentFlavorId() {
    return deploymentFlavorId;
  }

  public void setDeploymentFlavorId(String deploymentFlavorId) {
    this.deploymentFlavorId = deploymentFlavorId;
  }
}