Package jetbrains.buildServer.serverSide
Interface DownloadedArtifacts
-
- All Known Subinterfaces:
DownloadedArtifactsEx
- All Known Implementing Classes:
DownloadedArtifactsLoggerImpl.DownloadedArtifactsImpl
public interface DownloadedArtifactsRepresents information about downloaded artifact.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetActualNumberOfBuilds()Returns actual number of builds downloaded or provided artifacts (without applying user permissions)Map<Build,List<ArtifactInfo>>getArtifacts()Returns downloaded artifacts as map where build is key, and list of artifacts is value
-
-
-
Method Detail
-
getArtifacts
@NotNull Map<Build,List<ArtifactInfo>> getArtifacts()
Returns downloaded artifacts as map where build is key, and list of artifacts is value- Returns:
- downloaded artifacts
-
getActualNumberOfBuilds
int getActualNumberOfBuilds()
Returns actual number of builds downloaded or provided artifacts (without applying user permissions)- Returns:
- see above
-
-