public abstract class DockerImageExtractor extends Object implements hudson.ExtensionPoint
| Constructor and Description |
|---|
DockerImageExtractor() |
| Modifier and Type | Method and Description |
|---|---|
abstract Collection<String> |
getDockerImagesUsedByJob(hudson.model.Job<?,?> job)
Provides a collection of repository names
namespace/name that the job uses as seen by the implementing class. |
static Set<String> |
getDockerImagesUsedByJobFromAll(hudson.model.Job<?,?> job)
Provides a set of repository names
namespace/name that the job uses as seen by all the declared DockerImageExtractors. |
@Nonnull public abstract Collection<String> getDockerImagesUsedByJob(@Nonnull hudson.model.Job<?,?> job)
namespace/name that the job uses as seen by the implementing class.
Return an empty collection if none is found.job - the job being queried.@Nonnull public static Set<String> getDockerImagesUsedByJobFromAll(@Nonnull hudson.model.Job<?,?> job)
namespace/name that the job uses as seen by all the declared DockerImageExtractors.
Returns an empty set if none is found.job - the job being queried.Copyright © 2016–2019. All rights reserved.