![JAR search and dependency download from the Maven repository](/logo.png)
com.formkiq.server.service.dto.FormJSONField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greeting Show documentation
Show all versions of greeting Show documentation
Server-side integration for the FormKiQ ios application
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