Merge "[1707-OS] Updated license text according to the"
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-software-product-lib / openecomp-sdc-vendor-software-product-api / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / dao / type / TranslatedFileData.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.sdc.vendorsoftwareproduct.dao.type;
22
23
24 public class TranslatedFileData {
25
26   private String displayName;
27   private String version;
28   private String category;
29   private String subcategory;
30   private String vandorName;
31   private String vendorRelease;
32   private String packageChecksum;
33   private String packageType;
34
35   public String getDisplayName() {
36     return displayName;
37   }
38
39   public void setDisplayName(String displayName) {
40     this.displayName = displayName;
41   }
42
43   public String getVersion() {
44     return version;
45   }
46
47   public void setVersion(String version) {
48     this.version = version;
49   }
50
51   public String getCategory() {
52     return category;
53   }
54
55   public void setCategory(String category) {
56     this.category = category;
57   }
58
59   public String getSubcategory() {
60     return subcategory;
61   }
62
63   public void setSubcategory(String subcategory) {
64     this.subcategory = subcategory;
65   }
66
67   public String getVandorName() {
68     return vandorName;
69   }
70
71   public void setVandorName(String vandorName) {
72     this.vandorName = vandorName;
73   }
74
75   public String getVendorRelease() {
76     return vendorRelease;
77   }
78
79   public void setVendorRelease(String vendorRelease) {
80     this.vendorRelease = vendorRelease;
81   }
82
83   public String getPackageChecksum() {
84     return packageChecksum;
85   }
86
87   public void setPackageChecksum(String packageChecksum) {
88     this.packageChecksum = packageChecksum;
89   }
90
91   public String getPackageType() {
92     return packageType;
93   }
94
95   public void setPackageType(String packageType) {
96     this.packageType = packageType;
97   }
98 }