summaryrefslogtreecommitdiffstats
path: root/openecomp-be/api/openecomp-sdc-rest-webapp/item-rest/item-rest-types/src/main/java/org/openecomp/sdcrests/item/types/VersionRequestDto.java
blob: 629bc2d2dbae26dbd5c3979e12f0ae68ec79ab46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.openecomp.sdcrests.item.types;

import org.openecomp.sdc.versioning.types.VersionCreationMethod;

public class VersionRequestDto {
  private String description;
  private VersionCreationMethod creationMethod;

  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }

  public VersionCreationMethod getCreationMethod() {
    return creationMethod;
  }

  public void setCreationMethod(VersionCreationMethod creationMethod) {
    this.creationMethod = creationMethod;
  }
}