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
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionReturns theChecksActions 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 theChecksOutputof 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 theChecksOutputof a check.- Returns:
- An
ChecksOutputof a check
-
getActions
Returns theChecksActions of a check.- Returns:
- An immutable list of
ChecksActions of a check
-
toString
-