2 * Copyright 2017 Huawei Technologies Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.onap.vnfsdk.marketplace.entity.response;
19 public class PackageMeta {
21 private String csarId;
25 private String downloadUri;
27 private String report;
31 private String version;
33 private String provider;
37 private String format;
39 private boolean deletionPending;
41 private String createTime;
43 private String modifyTime;
45 private String shortDesc;
47 private int downloadCount;
49 private String details;
51 private String remarks;
53 public String getCsarId() {
57 public void setCsarId(String csarId) {
61 public String getName() {
65 public void setName(String name) {
69 public String getDownloadUri() {
73 public void setDownloadUri(String downloadUri) {
74 this.downloadUri = downloadUri;
77 public String getSize() {
81 public void setSize(String size) {
85 public String getVersion() {
89 public void setVersion(String version) {
90 this.version = version;
93 public String getProvider() {
97 public void setProvider(String provider) {
98 this.provider = provider;
101 public String getType() {
105 public void setType(String type) {
109 public String getFormat() {
113 public void setFormat(String format) {
114 this.format = format;
117 public boolean isDeletionPending() {
118 return deletionPending;
121 public void setDeletionPending(boolean deletionPending) {
122 this.deletionPending = deletionPending;
125 public String getCreateTime() {
129 public void setCreateTime(String createTime) {
130 this.createTime = createTime;
133 public String getModifyTime() {
137 public void setModifyTime(String modifyTime) {
138 this.modifyTime = modifyTime;
143 public String getShortDesc() {
147 public void setShortDesc(String shortDesc) {
148 this.shortDesc = shortDesc;
151 public String getDetails() {
155 public void setDetails(String details) {
156 this.details = details;
159 public String getRemarks() {
163 public void setRemarks(String remarks) {
164 this.remarks = remarks;
167 public String getReport() {
171 public void setReport(String report) {
172 this.report = report;
176 public int getDownloadCount() {
177 return downloadCount;
180 public void setDownloadCount(int downloadCount) {
181 this.downloadCount = downloadCount;