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

io.sealights.agents.plugin.upgrade.entities.ValidationError Maven / Gradle / Ivy

package io.sealights.agents.plugin.upgrade.entities;

public class ValidationError {
    private String name;
    private String problem;

    public ValidationError(String name, String problem){
        this.name = name;
        this.problem = problem;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getProblem() {
        return problem;
    }

    public void setProblem(String problem) {
        this.problem = problem;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy