summaryrefslogtreecommitdiffstats
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/ComputeCreationDto.java
blob: f2b0689cd4f298636cfa194b8e504307f9b18158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.openecomp.sdcrests.vendorsoftwareproducts.types;

public class ComputeCreationDto {
  private String id;

  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }
}