Package hudson.maven
Interface AggregatableAction
- All Superinterfaces:
Action
,ModelObject
- All Known Implementing Classes:
MavenArtifactRecord
,SurefireReport
Indicates that this
Action
for MavenBuild
contributes
an "aggregated" action to its governing MavenModuleSetBuild
.- Since:
- 1.99
- Author:
- Kohsuke Kawaguchi
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptioncreateAggregatedAction
(MavenModuleSetBuild build, Map<MavenModule, List<MavenBuild>> moduleBuilds) CreatesAction
to be contributed toMavenModuleSetBuild
.Methods inherited from interface hudson.model.Action
getDisplayName, getIconFileName, getUrlName
-
Method Details
-
createAggregatedAction
MavenAggregatedReport createAggregatedAction(MavenModuleSetBuild build, Map<MavenModule, List<MavenBuild>> moduleBuilds) CreatesAction
to be contributed toMavenModuleSetBuild
.- Parameters:
build
-MavenModuleSetBuild
for which the aggregated report is created.moduleBuilds
- The result ofMavenModuleSetBuild.getModuleBuilds()
provided for convenience and efficiency.- Returns:
- null if the reporter provides no such action.
-