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

com.formkiq.server.service.dto.FormJSONField Maven / Gradle / Ivy

The newest version!
package com.formkiq.server.service.dto;

/**
 * JSON Form Field representation.
 *
 */
public class FormJSONField {

    /** Field Label. */
    private String label;

    /** Field Value. */
    private String value;

    /**
     * default constructor.
     */
    public FormJSONField() {

    }

    /**
     * @return {@link String}
     */
    public String getLabel() {
        return this.label;
    }

    /**
     * @param text String
     */
    public void setLabel(final String text) {
        this.label = text;
    }

    /**
     * @return {@link String}
     */
    public String getValue() {
        return this.value;
    }

    /**
     * @param text String
     */
    public void setValue(final String text) {
        this.value = text;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy