Skip to content
Snippets Groups Projects
Commit 18eccbb0 authored by quark's avatar quark
Browse files

changed Obeject in File

parent b3873886
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ public interface ResearchReport { ...@@ -15,7 +15,7 @@ public interface ResearchReport {
* @param filePath Path of the File * @param filePath Path of the File
* @param userId The id of the uploader of the File * @param userId The id of the uploader of the File
*/ */
Object addFile(String filename, String filePath, String userId); File addFile(String filename, String filePath, String userId);
/** /**
* Return a File / Download * Return a File / Download
...@@ -24,7 +24,7 @@ public interface ResearchReport { ...@@ -24,7 +24,7 @@ public interface ResearchReport {
* @param filePath Path of the File * @param filePath Path of the File
* @return Returns the File to download * @return Returns the File to download
*/ */
Object getFile(String filename, String filePath); File getFile(String filename, String filePath);
/** /**
* Delete a File * Delete a File
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment