Package jetbrains.buildServer.serverSide
Interface ProvidedArtifacts
-
public interface ProvidedArtifacts
Represents information about provided artifact.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<Build,List<ArtifactInfo>>
getArtifacts()
Returns provided artifacts as map where target build is key, and list of artifacts is valueList<Build>
getArtifactsTargets()
Returns list of target builds.int
getNumberOfArtifactsTargets()
Returns actual number of target builds without applying user permissions.
-
-
-
Method Detail
-
getArtifacts
@NotNull Map<Build,List<ArtifactInfo>> getArtifacts()
Returns provided artifacts as map where target build is key, and list of artifacts is value- Returns:
- provided artifacts
-
getArtifactsTargets
List<Build> getArtifactsTargets()
Returns list of target builds. Depending on current user permissions size of this list may be less thangetNumberOfArtifactsTargets()
.- Returns:
- list of builds
-
getNumberOfArtifactsTargets
int getNumberOfArtifactsTargets()
Returns actual number of target builds without applying user permissions.- Returns:
- see above
-
-