Package org.apache.maven.model
Class IssueManagement
- java.lang.Object
-
- org.apache.maven.model.IssueManagement
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,InputLocationTracker
public class IssueManagement extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable, InputLocationTracker
Information about the issue tracking (or bug tracking) system used to manage this project.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private InputLocationlocationField location.private java.util.Map<java.lang.Object,InputLocation>locationsField locations.private java.lang.StringsystemThe name of the issue management system, e.g.private InputLocationsystemLocationField systemLocation.private java.lang.StringurlURL for the issue management system used by the project.private InputLocationurlLocationField urlLocation.
-
Constructor Summary
Constructors Constructor Description IssueManagement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IssueManagementclone()Method clone.InputLocationgetLocation(java.lang.Object key)Gets the location of the specified field in the input source.private InputLocationgetOtherLocation(java.lang.Object key)java.lang.StringgetSystem()Get the name of the issue management system, e.g.java.lang.StringgetUrl()Get uRL for the issue management system used by the project.voidsetLocation(java.lang.Object key, InputLocation location)Sets the location of the specified field.voidsetOtherLocation(java.lang.Object key, InputLocation location)voidsetSystem(java.lang.String system)Set the name of the issue management system, e.g.voidsetUrl(java.lang.String url)Set uRL for the issue management system used by the project.
-
-
-
Field Detail
-
system
private java.lang.String system
The name of the issue management system, e.g. Bugzilla.
-
url
private java.lang.String url
URL for the issue management system used by the project.
-
locations
private java.util.Map<java.lang.Object,InputLocation> locations
Field locations.
-
location
private InputLocation location
Field location.
-
systemLocation
private InputLocation systemLocation
Field systemLocation.
-
urlLocation
private InputLocation urlLocation
Field urlLocation.
-
-
Method Detail
-
clone
public IssueManagement clone()
Method clone.- Overrides:
clonein classjava.lang.Object- Returns:
- IssueManagement
-
getLocation
public InputLocation getLocation(java.lang.Object key)
Description copied from interface:InputLocationTrackerGets the location of the specified field in the input source.- Specified by:
getLocationin interfaceInputLocationTracker- Parameters:
key-- Returns:
- InputLocation
-
setLocation
public void setLocation(java.lang.Object key, InputLocation location)Description copied from interface:InputLocationTrackerSets the location of the specified field.- Specified by:
setLocationin interfaceInputLocationTracker- Parameters:
key-location-
-
setOtherLocation
public void setOtherLocation(java.lang.Object key, InputLocation location)- Parameters:
key-location-
-
getOtherLocation
private InputLocation getOtherLocation(java.lang.Object key)
- Parameters:
key-- Returns:
- InputLocation
-
getSystem
public java.lang.String getSystem()
Get the name of the issue management system, e.g. Bugzilla.- Returns:
- String
-
getUrl
public java.lang.String getUrl()
Get uRL for the issue management system used by the project.- Returns:
- String
-
setSystem
public void setSystem(java.lang.String system)
Set the name of the issue management system, e.g. Bugzilla.- Parameters:
system-
-
setUrl
public void setUrl(java.lang.String url)
Set uRL for the issue management system used by the project.- Parameters:
url-
-
-