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/ComputeDetailsDto.java
blob: d3e68b84469fc64d042df49f3232b49a95c6e816 (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
25
26
27
28
29
30
31
32
package org.openecomp.sdcrests.vendorsoftwareproducts.types;

import org.hibernate.validator.constraints.NotBlank;

import javax.validation.constraints.Size;

public class ComputeDetailsDto implements CompositionDataEntityDto {
  @NotBlank(message = "is mandatory and should not be empty")
  @Size(min = 0, max = 30, message = "length should not exceed 30 characters.")
  private String name;
  @Size(min = 0, max = 300, message = "length should not exceed 300 characters.")
  private String description;

  public ComputeDetailsDto() {
  }

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getDescription() {
    return description;
  }

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