Interface EnvironmentStatus
-
- All Known Implementing Classes:
EnvironmentStatusImpl
@PublicApi public interface EnvironmentStatusA wrapper for passing down to ui/soy an Environment with it's latest DeploymentResult
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable DeploymentResultgetDeploymentResult()Deployment result of interest for this environment@NotNull EnvironmentgetEnvironment()Environment represented by the status@Nullable DeploymentResultgetLatestResult()The latest deployment result for this environment IF it is different from the deployment result of interest
-
-
-
Method Detail
-
getEnvironment
@NotNull @NotNull Environment getEnvironment()
Environment represented by the status
-
getDeploymentResult
@Nullable @Nullable DeploymentResult getDeploymentResult()
Deployment result of interest for this environment
-
getLatestResult
@Nullable @Nullable DeploymentResult getLatestResult()
The latest deployment result for this environment IF it is different from the deployment result of interest
-
-