[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 / PackageInfoDto.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 /**
24  * Created by TALIO on 4/25/2016.
25  */
26 public class PackageInfoDto {
27
28   private String displayName;
29   private String description;
30   private String vspName;
31   private String version;
32   private String packageId;
33   private String category;
34   private String subCategory;
35   private String vendorName;
36   private String vendorRelease;
37   private String packageChecksum;
38   private String packageType;
39
40   public String getDisplayName() {
41     return displayName;
42   }
43
44   public void setDisplayName(String displayName) {
45     this.displayName = displayName;
46   }
47
48   public String getDescription() {
49     return description;
50   }
51
52   public void setDescription(String description) {
53     this.description = description;
54   }
55
56   public String getVersion() {
57     return version;
58   }
59
60   public void setVersion(String version) {
61     this.version = version;
62   }
63
64   public String getPackageId() {
65     return packageId;
66   }
67
68   public void setPackageId(String packageId) {
69     this.packageId = packageId;
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 getVendorRelease() {
97     return vendorRelease;
98   }
99
100   public void setVendorRelease(String vendorRelease) {
101     this.vendorRelease = vendorRelease;
102   }
103
104   public String getPackageChecksum() {
105     return packageChecksum;
106   }
107
108   public void setPackageChecksum(String packageChecksum) {
109     this.packageChecksum = packageChecksum;
110   }
111
112   public String getPackageType() {
113     return packageType;
114   }
115
116   public void setPackageType(String packageType) {
117     this.packageType = packageType;
118   }
119
120   public String getVspName() {
121     return vspName;
122   }
123
124   public void setVspName(String vendorName) {
125     this.vspName = vendorName;
126   }
127 }