Interface FilesServiceLocal
-
public interface FilesServiceLocalLocal interface for the Files service from the Planner API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilegetFile(java.lang.String id)Returns the file at the specified IDjava.util.List<File>getFiles(FilesFilter filter)Returns files fulfilling the search criteria
-
-
-
Method Detail
-
getFile
File getFile(java.lang.String id) throws PubServerException, java.lang.NumberFormatException
Returns the file at the specified ID- Parameters:
id- file ID- Returns:
- the file
- Throws:
PubServerExceptionjava.lang.NumberFormatException- See Also:
File
-
getFiles
java.util.List<File> getFiles(FilesFilter filter) throws PubServerException
Returns files fulfilling the search criteria- Parameters:
filter- search criteria in the FilesFilter object- Returns:
- the list of files
- Throws:
PubServerException- See Also:
File,FilesFilter
-
-