package foundation.io;
|
|
import java.io.File;
|
|
import foundation.data.object.DataObject;
|
|
public class IOContext {
|
|
private File uploadFile;
|
private String ioBatchId;
|
private DataObject toDateObject;
|
private DataObject toTempDateObject;
|
|
public void setUploadFile(File uploadFile) {
|
this.uploadFile = uploadFile;
|
}
|
|
public void setIoBatchId(String ioBatchId) {
|
this.ioBatchId = ioBatchId;
|
}
|
|
public File getUploadFile() {
|
return uploadFile;
|
}
|
|
public String getIoBatchId() {
|
return ioBatchId;
|
}
|
|
public DataObject getToDateObject() {
|
return toDateObject;
|
}
|
|
public void setToDateObject(DataObject toDateObject) {
|
this.toDateObject = toDateObject;
|
}
|
|
public void setToTempDateObject(DataObject toTempDateObject) {
|
this.toTempDateObject = toTempDateObject;
|
}
|
|
public DataObject getToTempDateObject() {
|
return toTempDateObject;
|
}
|
|
}
|