org.apache.maven.model.IssueManagement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 1.0.1 on 2009-08-06 15:13:09,
any modifications will be overwritten.
==============================================================
*/
package org.apache.maven.model;
/**
* Information about the issue tracking (or bug tracking) system
* used to manage this
* project.
*
* @version $Revision$ $Date$
*/
public class IssueManagement
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The name of the issue management system, e.g. Bugzilla.
*/
private String system;
/**
* URL for the issue management system used by the project.
*/
private String url;
//-----------/
//- Methods -/
//-----------/
/**
* Get the name of the issue management system, e.g. Bugzilla.
*
* @return String
*/
public String getSystem()
{
return this.system;
} //-- String getSystem()
/**
* Get uRL for the issue management system used by the project.
*
* @return String
*/
public String getUrl()
{
return this.url;
} //-- String getUrl()
/**
* Set the name of the issue management system, e.g. Bugzilla.
*
* @param system
*/
public void setSystem( String system )
{
this.system = system;
} //-- void setSystem( String )
/**
* Set uRL for the issue management system used by the project.
*
* @param url
*/
public void setUrl( String url )
{
this.url = url;
} //-- void setUrl( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy