Interface EnvironmentStatus
-
- All Known Implementing Classes:
EnvironmentStatusImpl
@PublicApi public interface EnvironmentStatus
A 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 DeploymentResult
getDeploymentResult()
Deployment result of interest for this environment@NotNull Environment
getEnvironment()
Environment represented by the status@Nullable DeploymentResult
getLatestResult()
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
-
-