947e58014b38bd0f20d3300a298dbad0b2ec88d2
[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 import lombok.AllArgsConstructor;
19 import lombok.Data;
20 import lombok.NoArgsConstructor;
21
22 @Data
23 @NoArgsConstructor
24 @AllArgsConstructor
25 public class PackageMeta {
26
27     private String csarId;
28
29     private String name;
30
31     private String downloadUri;
32
33     private String report;
34
35     private String size;
36
37     private String version;
38
39     private String provider;
40
41     private String type;
42
43     private String format;
44
45     private boolean deletionPending;
46
47     private String createTime;
48
49     private String modifyTime;
50
51     private String shortDesc;
52
53     private int downloadCount;
54
55     private String details;
56
57     private String remarks;
58
59     public String getCsarId() {
60         return csarId;
61     }
62
63     public void setCsarId(String csarId) {
64         this.csarId = csarId;
65     }
66
67     public String getName() {
68         return name;
69     }
70
71     public void setName(String name) {
72         this.name = name;
73     }
74
75     public String getDownloadUri() {
76         return downloadUri;
77     }
78
79     public void setDownloadUri(String downloadUri) {
80         this.downloadUri = downloadUri;
81     }
82
83     public String getSize() {
84         return size;
85     }
86
87     public void setSize(String size) {
88         this.size = size;
89     }
90
91     public String getVersion() {
92         return version;
93     }
94
95     public void setVersion(String version) {
96         this.version = version;
97     }
98
99     public String getProvider() {
100         return provider;
101     }
102
103     public void setProvider(String provider) {
104         this.provider = provider;
105     }
106
107     public String getType() {
108         return type;
109     }
110
111     public void setType(String type) {
112         this.type = type;
113     }
114
115     public String getFormat() {
116         return format;
117     }
118
119     public void setFormat(String format) {
120         this.format = format;
121     }
122
123     public boolean isDeletionPending() {
124         return deletionPending;
125     }
126
127     public void setDeletionPending(boolean deletionPending) {
128         this.deletionPending = deletionPending;
129     }
130
131     public String getCreateTime() {
132         return createTime;
133     }
134
135     public void setCreateTime(String createTime) {
136         this.createTime = createTime;
137     }
138
139     public String getModifyTime() {
140         return modifyTime;
141     }
142
143     public void setModifyTime(String modifyTime) {
144         this.modifyTime = modifyTime;
145     }
146
147
148
149     public String getShortDesc() {
150         return shortDesc;
151     }
152
153     public void setShortDesc(String shortDesc) {
154         this.shortDesc = shortDesc;
155     }
156
157     public String getDetails() {
158         return details;
159     }
160
161     public void setDetails(String details) {
162         this.details = details;
163     }
164
165     public String getRemarks() {
166         return remarks;
167     }
168
169     public void setRemarks(String remarks) {
170         this.remarks = remarks;
171     }
172
173     public String getReport() {
174         return report;
175     }
176
177     public void setReport(String report) {
178         this.report = report;
179     }
180
181
182     public int getDownloadCount() {
183         return downloadCount;
184     }
185
186     public void setDownloadCount(int downloadCount) {
187         this.downloadCount = downloadCount;
188     }
189
190 }