Package io.jenkins.plugins.checks.api
Class ChecksDetails
java.lang.Object
io.jenkins.plugins.checks.api.ChecksDetails
Details of a check. This class is a top class which contains all parameters needed for a check.
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns theChecksAction
s of a check.Returns the time that the check completed.Returns the conclusion of a check.Returns the url of a site with full details of a check.getName()
Returns the name of a check.Returns theChecksOutput
of a check.Returns the time that the check started.Returns the status of a check.toString()
-
Method Details
-
getName
Returns the name of a check.- Returns:
- the unique name of a check
-
getStatus
Returns the status of a check.- Returns:
ChecksStatus
, one ofQUEUED
,IN_PROGRESS
,COMPLETED
.
-
getDetailsURL
Returns the url of a site with full details of a check.- Returns:
- the url of a site
-
getStartedAt
Returns the time that the check started.- Returns:
- the start time of a check
-
getConclusion
Returns the conclusion of a check.- Returns:
- the conclusion of a check
-
getCompletedAt
Returns the time that the check completed.- Returns:
- the complete time of a check
-
getOutput
Returns theChecksOutput
of a check.- Returns:
- An
ChecksOutput
of a check
-
getActions
Returns theChecksAction
s of a check.- Returns:
- An immutable list of
ChecksAction
s of a check
-
toString
-