Package jetbrains.buildServer.serverSide
Interface InstallationInfo
-
- All Known Implementing Classes:
PreferencesInstallationInfo
,TeamCityInstallationInfo
public interface InstallationInfo
Provides immutable information about product installation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
get(String key)
Iterable<Map.Entry<String,String>>
getEntries()
String
getUUID()
-
-
-
Method Detail
-
get
@Nullable String get(@NotNull String key)
- Parameters:
key
- parameter key- Returns:
- parameter value or null if such parameter doesn't exist
-
getEntries
@NotNull Iterable<Map.Entry<String,String>> getEntries()
- Returns:
- all keys and their values. All values are not null
-
getUUID
@NotNull String getUUID()
- Returns:
- current uuid
-
-