package org.akaza.openclinica.domain.xform.dto; public class Upload implements UserControl { private String ref; private String appearance; private Label label = null; private Hint hint = null; private String mediatype; public String getRef() { return ref; } public void setRef(String ref) { this.ref = ref; } public String getAppearance() { return appearance; } public void setAppearance(String appearance) { this.appearance = appearance; } public Label getLabel() { return label; } public void setLabel(Label label) { this.label = label; } public Hint getHint() { return hint; } public void setHint(Hint hint) { this.hint = hint; } public String getMediatype() { return mediatype; } public void setMediatype(String mediatype) { this.mediatype = mediatype; } }