Interface RepositoryCreateStatus
-
- All Known Implementing Classes:
ImmutableRepositoryCreateStatus
@Immutable public interface RepositoryCreateStatusRequest to create commit statuses for a given ref.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringcontext()A string label to differentiate this status from the status of other systems.Stringdescription()A short description of the status.Stringstate()The state of the status.URItargetUrl()The target URL to associate with this status.
-
-
-
Method Detail
-
state
@Nullable String state()
The state of the status. Can be one of pending, success, error, or failure.
-
targetUrl
@Nullable URI targetUrl()
The target URL to associate with this status.
-
description
@Nullable String description()
A short description of the status. Must be less than 1024 bytes.
-
context
@Nullable String context()
A string label to differentiate this status from the status of other systems. Default: "default"
-
-