Package jetbrains.buildServer.serverSide
Interface InstallationInfo
-
- All Known Implementing Classes:
PreferencesInstallationInfo,TeamCityInstallationInfo
public interface InstallationInfoProvides immutable information about product installation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringget(String key)Iterable<Map.Entry<String,String>>getEntries()StringgetUUID()
-
-
-
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
-
-