com.sap.psr.vulas.cia.model.pypi.PypiRelease Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-lib-utils Show documentation
Show all versions of rest-lib-utils Show documentation
Provides RESTful APIs to discover, analyze and difference Maven artifacts, Java archives
as well as Java source and byte code.
/**
* This file is part of Eclipse Steady.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
*
* Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
*/
package com.sap.psr.vulas.cia.model.pypi;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* PypiRelease class.
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class PypiRelease {
String upload_time;
String python_version;
String url;
String md5_digest;
String filename;
/**
* Getter for the field upload_time
.
*
* @return a {@link java.lang.String} object.
*/
public String getUpload_time() {
return upload_time;
}
/**
* Setter for the field upload_time
.
*
* @param upload_time a {@link java.lang.String} object.
*/
public void setUpload_time(String upload_time) {
this.upload_time = upload_time;
}
/**
* Getter for the field python_version
.
*
* @return a {@link java.lang.String} object.
*/
public String getPython_version() {
return python_version;
}
/**
* Setter for the field python_version
.
*
* @param python_version a {@link java.lang.String} object.
*/
public void setPython_version(String python_version) {
this.python_version = python_version;
}
/**
* Getter for the field url
.
*
* @return a {@link java.lang.String} object.
*/
public String getUrl() {
return url;
}
/**
* Setter for the field url
.
*
* @param url a {@link java.lang.String} object.
*/
public void setUrl(String url) {
this.url = url;
}
/**
* Getter for the field md5_digest
.
*
* @return a {@link java.lang.String} object.
*/
public String getMd5_digest() {
return md5_digest;
}
/**
* Setter for the field md5_digest
.
*
* @param md5_digest a {@link java.lang.String} object.
*/
public void setMd5_digest(String md5_digest) {
this.md5_digest = md5_digest;
}
/**
* Getter for the field filename
.
*
* @return a {@link java.lang.String} object.
*/
public String getFilename() {
return filename;
}
/**
* Setter for the field filename
.
*
* @param filename a {@link java.lang.String} object.
*/
public void setFilename(String filename) {
this.filename = filename;
}
/**
* Getter for the field packagetype
.
*
* @return a {@link java.lang.String} object.
*/
public String getPackagetype() {
return packagetype;
}
/**
* Setter for the field packagetype
.
*
* @param packagetype a {@link java.lang.String} object.
*/
public void setPackagetype(String packagetype) {
this.packagetype = packagetype;
}
/**
* Getter for the field path
.
*
* @return a {@link java.lang.String} object.
*/
public String getPath() {
return path;
}
/**
* Setter for the field path
.
*
* @param path a {@link java.lang.String} object.
*/
public void setPath(String path) {
this.path = path;
}
/**
* Getter for the field size
.
*
* @return a long.
*/
public long getSize() {
return size;
}
/**
* Setter for the field size
.
*
* @param size a long.
*/
public void setSize(long size) {
this.size = size;
}
String packagetype;
String path;
long size;
}