All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.salesforce.dockerfileimageupdate.utils.ProcessingErrors Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.1.26
Show newest version
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