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 FetchAvailableToolsResultcreate(Collection<? extends DownloadableToolVersion> fetchedTools, Collection<String> errors)static FetchAvailableToolsResultcreateError(String error)static FetchAvailableToolsResultcreateError(String error, Throwable throwable)static FetchAvailableToolsResultcreateSuccessful(Collection<? extends DownloadableToolVersion> fetchedTools)Collection<String>getErrors()StringgetErrorsSummary()Set<? extends DownloadableToolVersion>getFetchedTools()static FetchAvailableToolsResultjoin(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()
-
-