Class Action
- All Implemented Interfaces:
Serializable
- Version:
- $Revision$ $Date$
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet a short description of the action taken.getDate()Get fix date.getDev()Get name of developer who committed the change.getDueTo()Get name of the person to be credited for this change.Get email of the person to be credited for this change.Get a comma separated list of fixed issues.getIssue()Get id of the issue related to this change.Get id of issue tracking system.getType()Get supported action types are the following: add: added functionality to the project. fix: bug fix for the project. update: updated some part of the project. remove: removed some functionality from the project.voidSet a short description of the action taken.voidSet fix date.voidSet name of developer who committed the change.voidSet name of the person to be credited for this change.voidsetDueToEmail(String dueToEmail) Set email of the person to be credited for this change.voidsetFixedIssuesString(String fixedIssuesString) Set a comma separated list of fixed issues.voidSet id of the issue related to this change.voidSet id of issue tracking system.voidSet supported action types are the following: add: added functionality to the project. fix: bug fix for the project. update: updated some part of the project. remove: removed some functionality from the project.Methods inherited from class org.apache.maven.plugins.changes.model.AbstractAction
getDueTos, getFixedIssues
-
Constructor Details
-
Action
public Action()
-
-
Method Details
-
getAction
Get a short description of the action taken.- Returns:
- String
-
getDate
Get fix date.- Returns:
- String
-
getDev
Get 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.html page.
- Returns:
- String
-
getDueTo
Get name of the person to be credited for this change. This can be used when a patch is submitted by a non-committer. Can be a comma separated list.- Specified by:
getDueToin classAbstractAction- Returns:
- String
-
getDueToEmail
Get email of the person to be credited for this change. Can be a comma separated list.- Specified by:
getDueToEmailin classAbstractAction- Returns:
- String
-
getFixedIssuesString
Get a comma separated list of fixed issues.- Specified by:
getFixedIssuesStringin classAbstractAction- Returns:
- String
-
getIssue
Get 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.
- Returns:
- String
-
getSystem
Get id of issue tracking system. If empty 'default' value will be used.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.
- Returns:
- String
-
getType
Get supported action types are the following:- add: added functionality to the project.
- fix: bug fix for the project.
- update: updated some part of the project.
- remove: removed some functionality from the project.
- Returns:
- String
-
setAction
Set a short description of the action taken.- Parameters:
action- a action object.
-
setDate
Set fix date.- Parameters:
date- a date object.
-
setDev
Set 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.html page.
- Parameters:
dev- a dev object.
-
setDueTo
Set name of the person to be credited for this change. This can be used when a patch is submitted by a non-committer. Can be a comma separated list.- Parameters:
dueTo- a dueTo object.
-
setDueToEmail
Set email of the person to be credited for this change. Can be a comma separated list.- Parameters:
dueToEmail- a dueToEmail object.
-
setFixedIssuesString
Set a comma separated list of fixed issues.- Parameters:
fixedIssuesString- a fixedIssuesString object.
-
setIssue
Set 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.
- Parameters:
issue- a issue object.
-
setSystem
Set id of issue tracking system. If empty 'default' value will be used.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.
- Parameters:
system- a system object.
-
setType
Set supported action types are the following:- add: added functionality to the project.
- fix: bug fix for the project.
- update: updated some part of the project.
- remove: removed some functionality from the project.
- Parameters:
type- a type object.
-