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


public class NicCreationResponseDto {
  private String nicId;

  public String getNicId() {
    return nicId;
  }

  public void setNicId(String nicId) {
    this.nicId = nicId;
  }
}