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

public class ComponentCreationDto {
  private String vfcId;

  public String getVfcId() {
    return vfcId;
  }

  public void setVfcId(String vfcId) {
    this.vfcId = vfcId;
  }
}