package jp.dip.arimodoki.model;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import org.springframework.web.multipart.MultipartFile;
@Scope("prototype")
@Component
public class FormFile implements FormFileIf {
private MultipartFile[] uploadfile = null;
private String[] imgtype = null;
private String[] respImage =null;
public void setUploadfile(MultipartFile[] value) {
this.uploadfile = value;
}
public MultipartFile[] getUploadfile() {
return this.uploadfile;
}
public String[] getImgtype() {
return imgtype;
}
public void setImgtype(String[] imgtype) {
this.imgtype = imgtype;
}
public String[] getRespImage() {
return respImage;
}
public void setRespImage(String[] respImage) {
this.respImage = respImage;
}
}
|