com.talk2object.plum.interaction.rich.field.FileField Maven / Gradle / Ivy
package com.talk2object.plum.interaction.rich.field;
import com.talk2object.plum.input.value.File;
public class FileField extends InteractiveField {
private String contentType;
public FileField(String name) {
super(name, FieldType.FILE, File.class);
}
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy