[SDC-29] Amdocs OnBoard 1707 initial commit.
[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 / VspDescriptionDto.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
22
23 import org.openecomp.sdc.vendorsoftwareproduct.types.LicensingData;
24 import org.openecomp.sdcrests.common.types.VersionDto;
25
26 import javax.validation.constraints.NotNull;
27
28 /**
29  * Created by TALIO on 4/20/2016.
30  */
31 public class VspDescriptionDto {
32   @NotNull
33   private String name;
34   @NotNull
35   private String description;
36   private String icon;
37   @NotNull
38   private String category;
39   @NotNull
40   private String subCategory;
41   @NotNull
42   private String vendorName;
43   @NotNull
44   private String vendorId;            // this will be populated with vlm id
45   private VersionDto licensingVersion;    // this will be populated with vlm version
46   private LicensingData licensingData;
47
48   public String getName() {
49     return name;
50   }
51
52   public void setName(String name) {
53     this.name = name;
54   }
55
56   public String getDescription() {
57     return description;
58   }
59
60   public void setDescription(String description) {
61     this.description = description;
62   }
63
64   public String getIcon() {
65     return this.icon;
66   }
67
68   public void setIcon(String icon) {
69     this.icon = icon;
70   }
71
72   public String getCategory() {
73     return category;
74   }
75
76   public void setCategory(String category) {
77     this.category = category;
78   }
79
80   public String getSubCategory() {
81     return subCategory;
82   }
83
84   public void setSubCategory(String subCategory) {
85     this.subCategory = subCategory;
86   }
87
88   public String getVendorName() {
89     return vendorName;
90   }
91
92   public void setVendorName(String vendorName) {
93     this.vendorName = vendorName;
94   }
95
96   public String getVendorId() {
97     return vendorId;
98   }
99
100   public void setVendorId(String vendorId) {
101     this.vendorId = vendorId;
102   }
103
104   public VersionDto getLicensingVersion() {
105     return licensingVersion;
106   }
107
108   public void setLicensingVersion(VersionDto licensingVersion) {
109     this.licensingVersion = licensingVersion;
110   }
111
112   public LicensingData getLicensingData() {
113     return licensingData;
114   }
115
116   public void setLicensingData(LicensingData licensingData) {
117     this.licensingData = licensingData;
118   }
119 }