]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.server/src/main/java/org/argeo/slc/web/mvc/FileUploadBean.java
Introduction of annotation to handle MVC flows
[gpl/argeo-slc.git] / runtime / org.argeo.slc.server / src / main / java / org / argeo / slc / web / mvc / FileUploadBean.java
1 package org.argeo.slc.web.mvc;
2
3
4 public class FileUploadBean {
5 private byte[] file;
6
7 public void setFile(byte[] file) {
8 this.file = file;
9 }
10
11 public byte[] getFile() {
12 return file;
13 }
14 }