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

org.openl.rules.ui.tablewizard.AliasValue Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.ui.tablewizard;


import javax.validation.constraints.NotBlank;

/**
 * @author Andrei Astrouski
 */
public class AliasValue {

    @NotBlank(message = "Cannot be empty")
    private String value;
    private String submittedValue;

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public String getSubmittedValue() {
        return submittedValue;
    }

    public void setSubmittedValue(String submittedValue) {
        this.submittedValue = submittedValue;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy