push addional code
[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 public class TranslatedFileData {
24
25   private String displayName;
26   private String version;
27   private String category;
28   private String subcategory;
29   private String vandorName;
30   private String vendorRelease;
31   private String packageChecksum;
32   private String packageType;
33
34   public String getDisplayName() {
35     return displayName;
36   }
37
38   public void setDisplayName(String displayName) {
39     this.displayName = displayName;
40   }
41
42   public String getVersion() {
43     return version;
44   }
45
46   public void setVersion(String version) {
47     this.version = version;
48   }
49
50   public String getCategory() {
51     return category;
52   }
53
54   public void setCategory(String category) {
55     this.category = category;
56   }
57
58   public String getSubcategory() {
59     return subcategory;
60   }
61
62   public void setSubcategory(String subcategory) {
63     this.subcategory = subcategory;
64   }
65
66   public String getVandorName() {
67     return vandorName;
68   }
69
70   public void setVandorName(String vandorName) {
71     this.vandorName = vandorName;
72   }
73
74   public String getVendorRelease() {
75     return vendorRelease;
76   }
77
78   public void setVendorRelease(String vendorRelease) {
79     this.vendorRelease = vendorRelease;
80   }
81
82   public String getPackageChecksum() {
83     return packageChecksum;
84   }
85
86   public void setPackageChecksum(String packageChecksum) {
87     this.packageChecksum = packageChecksum;
88   }
89
90   public String getPackageType() {
91     return packageType;
92   }
93
94   public void setPackageType(String packageType) {
95     this.packageType = packageType;
96   }
97 }