com.salesforce.dockerfileimageupdate.utils.ProcessingErrors Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dockerfile-image-update Show documentation
Show all versions of dockerfile-image-update Show documentation
This tool provides a mechanism to make security updates to docker images at scale.
The tool searches github for declared docker images and sends pull requests to projects that are not using
the desired version of the requested docker image.
package com.salesforce.dockerfileimageupdate.utils;
import java.util.Optional;
public class ProcessingErrors {
private final String imageName;
private final String tag;
private final Optional failure;
public ProcessingErrors(String imageName, String tag, Optional failure) {
this.imageName = imageName;
this.tag = tag;
this.failure = failure;
}
public String getImageName() {
return imageName;
}
public String getTag() {
return tag;
}
public Optional getFailure() {
return failure;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy