All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.psr.vulas.cia.model.pypi.PypiInfo Maven / Gradle / Ivy

Go to download

Provides RESTful APIs to discover, analyze and difference Maven artifacts, Java archives as well as Java source and byte code.

There is a newer version: 3.1.15
Show newest version
/**
 * 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.List;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * 

PypiInfo class.

* */ @JsonIgnoreProperties(ignoreUnknown = true) public class PypiInfo { String maintainer_email; String package_url; String author; String author_email; String download_url; String version; String release_url; List classifiers; String name; String bugtrack_url; String license; String summary; String home_page; /** *

Getter for the field maintainer_email.

* * @return a {@link java.lang.String} object. */ public String getMaintainer_email() { return maintainer_email; } /** *

Setter for the field maintainer_email.

* * @param maintainer_email a {@link java.lang.String} object. */ public void setMaintainer_email(String maintainer_email) { this.maintainer_email = maintainer_email; } /** *

Getter for the field package_url.

* * @return a {@link java.lang.String} object. */ public String getPackage_url() { return package_url; } /** *

Setter for the field package_url.

* * @param package_url a {@link java.lang.String} object. */ public void setPackage_url(String package_url) { this.package_url = package_url; } /** *

Getter for the field author.

* * @return a {@link java.lang.String} object. */ public String getAuthor() { return author; } /** *

Setter for the field author.

* * @param author a {@link java.lang.String} object. */ public void setAuthor(String author) { this.author = author; } /** *

Getter for the field author_email.

* * @return a {@link java.lang.String} object. */ public String getAuthor_email() { return author_email; } /** *

Setter for the field author_email.

* * @param author_email a {@link java.lang.String} object. */ public void setAuthor_email(String author_email) { this.author_email = author_email; } /** *

Getter for the field download_url.

* * @return a {@link java.lang.String} object. */ public String getDownload_url() { return download_url; } /** *

Setter for the field download_url.

* * @param download_url a {@link java.lang.String} object. */ public void setDownload_url(String download_url) { this.download_url = download_url; } /** *

Getter for the field version.

* * @return a {@link java.lang.String} object. */ public String getVersion() { return version; } /** *

Setter for the field version.

* * @param version a {@link java.lang.String} object. */ public void setVersion(String version) { this.version = version; } /** *

Getter for the field release_url.

* * @return a {@link java.lang.String} object. */ public String getRelease_url() { return release_url; } /** *

Setter for the field release_url.

* * @param release_url a {@link java.lang.String} object. */ public void setRelease_url(String release_url) { this.release_url = release_url; } /** *

Getter for the field classifiers.

* * @return a {@link java.util.List} object. */ public List getClassifiers() { return classifiers; } /** *

Setter for the field classifiers.

* * @param classifiers a {@link java.util.List} object. */ public void setClassifiers(List classifiers) { this.classifiers = classifiers; } /** *

Getter for the field name.

* * @return a {@link java.lang.String} object. */ public String getName() { return name; } /** *

Setter for the field name.

* * @param name a {@link java.lang.String} object. */ public void setName(String name) { this.name = name; } /** *

Getter for the field bugtrack_url.

* * @return a {@link java.lang.String} object. */ public String getBugtrack_url() { return bugtrack_url; } /** *

Setter for the field bugtrack_url.

* * @param bugtrack_url a {@link java.lang.String} object. */ public void setBugtrack_url(String bugtrack_url) { this.bugtrack_url = bugtrack_url; } /** *

Getter for the field license.

* * @return a {@link java.lang.String} object. */ public String getLicense() { return license; } /** *

Setter for the field license.

* * @param license a {@link java.lang.String} object. */ public void setLicense(String license) { this.license = license; } /** *

Getter for the field summary.

* * @return a {@link java.lang.String} object. */ public String getSummary() { return summary; } /** *

Setter for the field summary.

* * @param summary a {@link java.lang.String} object. */ public void setSummary(String summary) { this.summary = summary; } /** *

Getter for the field home_page.

* * @return a {@link java.lang.String} object. */ public String getHome_page() { return home_page; } /** *

Setter for the field home_page.

* * @param home_page a {@link java.lang.String} object. */ public void setHome_page(String home_page) { this.home_page = home_page; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy