package com.mossle.xform; public class XformField { private String name; private String type; private Object value; private String contentType; private String label; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getType() { return type; } public void setType(String type) { this.type = type; } public Object getValue() { return value; } public void setValue(Object value) { this.value = value; } public String getContentType() { return contentType; } public void setContentType(String contentType) { this.contentType = contentType; } public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } }