Package jetbrains.buildServer.updates
Interface UpdateOption
-
- All Known Implementing Classes:
UpdateOptionImpl
public interface UpdateOption
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFullVersion()
String
getPreparingFailedReason()
String
getPreparingProgress()
String
getPreparingWarning()
AvailableVersion
getVersion()
boolean
isAutoUpdatePossible()
boolean
isCompatibleWith(LicenseKey licenseKey)
boolean
isPreparingForUpdate()
boolean
isReadyForUpdate()
-
-
-
Method Detail
-
getFullVersion
@NotNull String getFullVersion()
-
getVersion
@NotNull AvailableVersion getVersion()
-
isAutoUpdatePossible
boolean isAutoUpdatePossible()
-
isCompatibleWith
boolean isCompatibleWith(@NotNull LicenseKey licenseKey)
-
isPreparingForUpdate
boolean isPreparingForUpdate()
-
getPreparingProgress
@Nullable String getPreparingProgress()
-
getPreparingFailedReason
@Nullable String getPreparingFailedReason()
-
getPreparingWarning
@Nullable String getPreparingWarning()
-
isReadyForUpdate
boolean isReadyForUpdate()
-
-