Class FetchAvailableToolsResult
- java.lang.Object
-
- jetbrains.buildServer.tools.available.FetchAvailableToolsResult
-
public class FetchAvailableToolsResult extends Object
- Author:
- Evgeniy.Koshkin
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FetchAvailableToolsResult
create(Collection<? extends DownloadableToolVersion> fetchedTools, Collection<String> errors)
static FetchAvailableToolsResult
createError(String error)
static FetchAvailableToolsResult
createError(String error, Throwable throwable)
static FetchAvailableToolsResult
createSuccessful(Collection<? extends DownloadableToolVersion> fetchedTools)
Collection<String>
getErrors()
String
getErrorsSummary()
Set<? extends DownloadableToolVersion>
getFetchedTools()
static FetchAvailableToolsResult
join(Collection<FetchAvailableToolsResult> results)
-
-
-
Method Detail
-
create
@NotNull public static FetchAvailableToolsResult create(@NotNull Collection<? extends DownloadableToolVersion> fetchedTools, @NotNull Collection<String> errors)
-
createSuccessful
@NotNull public static FetchAvailableToolsResult createSuccessful(@NotNull Collection<? extends DownloadableToolVersion> fetchedTools)
-
createError
@NotNull public static FetchAvailableToolsResult createError(@NotNull String error)
-
createError
@NotNull public static FetchAvailableToolsResult createError(@NotNull String error, @NotNull Throwable throwable)
-
join
@NotNull public static FetchAvailableToolsResult join(@NotNull Collection<FetchAvailableToolsResult> results)
-
getFetchedTools
@NotNull public Set<? extends DownloadableToolVersion> getFetchedTools()
-
getErrors
@NotNull public Collection<String> getErrors()
-
getErrorsSummary
@Nullable public String getErrorsSummary()
-
-