Package org.ossreviewtoolkit.model
Class AnalyzerRun
-
- All Implemented Interfaces:
public final class AnalyzerRunThe summary of a single run of the analyzer.
-
-
Field Summary
Fields Modifier and Type Field Description public final static AnalyzerRunEMPTYprivate final InstantstartTimeprivate final InstantendTimeprivate final Environmentenvironmentprivate final AnalyzerConfigurationconfigprivate final AnalyzerResultresult
-
Constructor Summary
Constructors Constructor Description AnalyzerRun(Instant startTime, Instant endTime, Environment environment, AnalyzerConfiguration config, AnalyzerResult result)
-
Method Summary
Modifier and Type Method Description final InstantgetStartTime()The Instant the analyzer was started.. final InstantgetEndTime()The Instant the analyzer has finished. final EnvironmentgetEnvironment()The Environment in which the analyzer was executed. final AnalyzerConfigurationgetConfig()The AnalyzerConfiguration used for this run. final AnalyzerResultgetResult()The result of this run. -
-
Constructor Detail
-
AnalyzerRun
AnalyzerRun(Instant startTime, Instant endTime, Environment environment, AnalyzerConfiguration config, AnalyzerResult result)
-
-
Method Detail
-
getStartTime
final Instant getStartTime()
The Instant the analyzer was started..
-
getEndTime
final Instant getEndTime()
The Instant the analyzer has finished.
-
getEnvironment
final Environment getEnvironment()
The Environment in which the analyzer was executed.
-
getConfig
final AnalyzerConfiguration getConfig()
The AnalyzerConfiguration used for this run.
-
getResult
final AnalyzerResult getResult()
The result of this run.
-
-
-
-