public class Action extends Object implements Serializable
Constructor and Description |
---|
Action() |
Modifier and Type | Method and Description |
---|---|
void |
addDueTo(DueTo dueTo)
Method addDueTo.
|
void |
addFixedIssue(FixedIssue fixedIssue)
Method addFixedIssue.
|
String |
getAction()
Get a short description of the action taken.
|
String |
getDate()
Get fix date.
|
String |
getDev()
Get
|
String |
getDueTo()
Get name of the person to be credited for this change.
|
String |
getDueToEmail()
Get email of the person to be credited for this change.
|
List |
getDueTos()
Method getDueTos.
|
List |
getFixedIssues()
Method getFixedIssues.
|
String |
getIssue()
Get
|
String |
getSystem()
Get
|
String |
getType()
Get supported action types are the following:
add : added functionnality to the
project.
fix : bug fix for the project.
update : updated some part of the
project.
remove : removed some functionnality from
the project.
|
void |
removeDueTo(DueTo dueTo)
Method removeDueTo.
|
void |
removeFixedIssue(FixedIssue fixedIssue)
Method removeFixedIssue.
|
void |
setAction(String action)
Set a short description of the action taken.
|
void |
setDate(String date)
Set fix date.
|
void |
setDev(String dev)
Set
|
void |
setDueTo(String dueTo)
Set name of the person to be credited for this change.
|
void |
setDueToEmail(String dueToEmail)
Set email of the person to be credited for this change.
|
void |
setDueTos(List dueTos)
Set a list of contributors for this issue.
|
void |
setFixedIssues(List fixedIssues)
Set a list of fix issues.
|
void |
setIssue(String issue)
Set
|
void |
setSystem(String system)
Set
|
void |
setType(String type)
Set supported action types are the following:
add : added functionnality to the
project.
fix : bug fix for the project.
update : updated some part of the
project.
remove : removed some functionnality from
the project.
|
public void addDueTo(DueTo dueTo)
dueTo
- public void addFixedIssue(FixedIssue fixedIssue)
fixedIssue
- public String getAction()
public String getDate()
public String getDev()
Name of developer who committed the change.
This can be either the id of the developer, as specified in the developers section of the pom.xml file, or the name of the developer. If you generate a changes report and specify the id of the developer, a link is created to that developer in the team-list.html page.
public String getDueTo()
public String getDueToEmail()
public List getDueTos()
public List getFixedIssues()
public String getIssue()
Id of the issue related to this change. This is the id in your issue tracking system.
The Changes plugin will generate a URL out of this id. The URL is constructed using the value of the issueLinkTemplate parameter.
See the changes-report mojo for more details.
public String getSystem()
Id of issue tracking system. If empty 'default' value will be use.
The Changes plugin will generate a URL out of this id. The URL is constructed using the value of the issueLinkTemplatePerSystem parameter.
See the changes-report mojo for more details.
public String getType()
public void removeDueTo(DueTo dueTo)
dueTo
- public void removeFixedIssue(FixedIssue fixedIssue)
fixedIssue
- public void setAction(String action)
action
- public void setDate(String date)
date
- public void setDev(String dev)
Name of developer who committed the change.
This can be either the id of the developer, as specified in the developers section of the pom.xml file, or the name of the developer. If you generate a changes report and specify the id of the developer, a link is created to that developer in the team-list.html page.
dev
- public void setDueTo(String dueTo)
dueTo
- public void setDueToEmail(String dueToEmail)
dueToEmail
- public void setDueTos(List dueTos)
dueTos
- public void setFixedIssues(List fixedIssues)
fixedIssues
- public void setIssue(String issue)
Id of the issue related to this change. This is the id in your issue tracking system.
The Changes plugin will generate a URL out of this id. The URL is constructed using the value of the issueLinkTemplate parameter.
See the changes-report mojo for more details.
issue
- public void setSystem(String system)
Id of issue tracking system. If empty 'default' value will be use.
The Changes plugin will generate a URL out of this id. The URL is constructed using the value of the issueLinkTemplatePerSystem parameter.
See the changes-report mojo for more details.
system
- public void setType(String type)
type
- Copyright © 2002–2013 The Apache Software Foundation. All rights reserved.