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

pl.fhframework.BindingResult Maven / Gradle / Ivy

package pl.fhframework;

import lombok.Getter;

public class BindingResult {

    @Getter
    private Object parent;

    @Getter
    private String attributeName;

    @Getter
    private T value;

    public BindingResult(Object parent, String attributeName, T value){
        this.parent = parent;
        this.attributeName = attributeName;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy