Made Lecturer service to work
This commit is contained in:
@ -1,21 +1,21 @@
|
||||
package com.plannaplan.models;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Date;
|
||||
import java.io.InputStream;
|
||||
|
||||
public class ConfigData {
|
||||
private Date start;
|
||||
private Date end;
|
||||
private File file;
|
||||
private InputStream filestream;
|
||||
|
||||
public ConfigData(Date start, Date end, File file) {
|
||||
public ConfigData(Date start, Date end, InputStream filestream) {
|
||||
this.start = start;
|
||||
this.end = end;
|
||||
this.file = file;
|
||||
this.filestream = filestream;
|
||||
}
|
||||
|
||||
public File getFile() {
|
||||
return file;
|
||||
public InputStream getFilestream() {
|
||||
return filestream;
|
||||
}
|
||||
|
||||
public Date getEnd() {
|
||||
|
Reference in New Issue
Block a user