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