49b7842936d87fdde7417690953ec08066e8c44c
[vnfsdk/refrepo.git] /
1 /**
2  * Copyright 2017 Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vnfsdk.marketplace.entity.response;
17
18
19 public class PackageMeta {
20
21     private String csarId;
22
23     private String name;
24
25     private String downloadUri;
26
27     private String report;
28
29     private String size;
30
31     private String version;
32
33     private String provider;
34
35     private String type;
36
37     private String format;
38
39     private boolean deletionPending;
40
41     private String createTime;
42
43     private String modifyTime;
44
45     private String shortDesc;
46
47     private int downloadCount;
48
49     private String details;
50
51     private String remarks;
52
53     public String getCsarId() {
54         return csarId;
55     }
56
57     public void setCsarId(String csarId) {
58         this.csarId = csarId;
59     }
60
61     public String getName() {
62         return name;
63     }
64
65     public void setName(String name) {
66         this.name = name;
67     }
68
69     public String getDownloadUri() {
70         return downloadUri;
71     }
72
73     public void setDownloadUri(String downloadUri) {
74         this.downloadUri = downloadUri;
75     }
76
77     public String getSize() {
78         return size;
79     }
80
81     public void setSize(String size) {
82         this.size = size;
83     }
84
85     public String getVersion() {
86         return version;
87     }
88
89     public void setVersion(String version) {
90         this.version = version;
91     }
92
93     public String getProvider() {
94         return provider;
95     }
96
97     public void setProvider(String provider) {
98         this.provider = provider;
99     }
100
101     public String getType() {
102         return type;
103     }
104
105     public void setType(String type) {
106         this.type = type;
107     }
108
109     public String getFormat() {
110         return format;
111     }
112
113     public void setFormat(String format) {
114         this.format = format;
115     }
116
117     public boolean isDeletionPending() {
118         return deletionPending;
119     }
120
121     public void setDeletionPending(boolean deletionPending) {
122         this.deletionPending = deletionPending;
123     }
124
125     public String getCreateTime() {
126         return createTime;
127     }
128
129     public void setCreateTime(String createTime) {
130         this.createTime = createTime;
131     }
132
133     public String getModifyTime() {
134         return modifyTime;
135     }
136
137     public void setModifyTime(String modifyTime) {
138         this.modifyTime = modifyTime;
139     }
140
141
142
143     public String getShortDesc() {
144         return shortDesc;
145     }
146
147     public void setShortDesc(String shortDesc) {
148         this.shortDesc = shortDesc;
149     }
150
151     public String getDetails() {
152         return details;
153     }
154
155     public void setDetails(String details) {
156         this.details = details;
157     }
158
159     public String getRemarks() {
160         return remarks;
161     }
162
163     public void setRemarks(String remarks) {
164         this.remarks = remarks;
165     }
166
167     public String getReport() {
168         return report;
169     }
170
171     public void setReport(String report) {
172         this.report = report;
173     }
174
175
176     public int getDownloadCount() {
177         return downloadCount;
178     }
179
180     public void setDownloadCount(int downloadCount) {
181         this.downloadCount = downloadCount;
182     }
183
184 }