[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-software-products-rest / vendor-software-products-rest-types / src / main / java / org / openecomp / sdcrests / vendorsoftwareproducts / types / ComputeDescription.java
1 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
2
3 public class ComputeDescription {
4   private String name;
5   private String description;
6
7   public String getName() {
8     return name;
9   }
10
11   public void setName(String name) {
12     this.name = name;
13   }
14
15   public String getDescription() {
16     return description;
17   }
18
19   public void setDescription(String description) {
20     this.description = description;
21   }
22
23   public ComputeDescription() {
24
25   }
26
27   public ComputeDescription(String name, String description) {
28     this.name = name;
29     this.description = description;
30   }
31 }