
shz.model.Data Maven / Gradle / Ivy
package shz.model;
import java.io.Serializable;
public class Data implements Serializable {
private static final long serialVersionUID = 69463569406783638L;
protected String id;
protected String label;
protected String name;
protected String type;
protected Object value;
public final String getId() {
return id;
}
public final void setId(String id) {
this.id = id;
}
public final String getLabel() {
return label;
}
public final void setLabel(String label) {
this.label = label;
}
public final String getName() {
return name;
}
public final void setName(String name) {
this.name = name;
}
public final String getType() {
return type;
}
public final void setType(String type) {
this.type = type;
}
public final Object getValue() {
return value;
}
public final void setValue(Object value) {
this.value = value;
}
@Override
public String toString() {
return "Data{" +
"id='" + id + '\'' +
", label='" + label + '\'' +
", name='" + name + '\'' +
", type='" + type + '\'' +
", value=" + value +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy