Package io.jenkins.plugins.reporter
Class ReportResult
- java.lang.Object
-
- io.jenkins.plugins.reporter.ReportResult
-
- All Implemented Interfaces:
Serializable
public class ReportResult extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReportResult(Run<?,?> owner, Report report)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.eclipse.collections.api.list.ImmutableList<String>
getErrorMessages()
org.eclipse.collections.api.list.ImmutableList<String>
getInfoMessages()
Run<?,?>
getOwner()
Report
getReport()
void
setOwner(Run<?,?> owner)
Sets the run for this result after Jenkins read its data from disk.
-
-
-
Method Detail
-
getOwner
public Run<?,?> getOwner()
-
setOwner
public void setOwner(Run<?,?> owner)
Sets the run for this result after Jenkins read its data from disk.- Parameters:
owner
- the initialized run
-
getReport
public Report getReport()
-
getErrorMessages
public org.eclipse.collections.api.list.ImmutableList<String> getErrorMessages()
-
getInfoMessages
public org.eclipse.collections.api.list.ImmutableList<String> getInfoMessages()
-
-