Package org.cyclos.impl.system
Interface RawFileServiceLocal
-
- All Superinterfaces:
RawFileService,Service
- All Known Implementing Classes:
RawFileServiceImpl
public interface RawFileServiceLocal extends RawFileService
Local interface forRawFileService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longdeleteExpiredTemp()Deletes the expired temporary files from the database and the corresponding contents from the content storage.<T extends RawFile>
TfindAs(Class<T> clazz, Long id)Finds the given raw file subclass by idvoidmove(TempFile temp, StoredFile image)Move the content of the given temporary file to a final destination-
Methods inherited from interface org.cyclos.services.system.RawFileService
listTemp, load, readContent, remove, removeAll, saveName, saveTemp
-
-
-
-
Method Detail
-
deleteExpiredTemp
long deleteExpiredTemp()
Deletes the expired temporary files from the database and the corresponding contents from the content storage.
-
findAs
<T extends RawFile> T findAs(Class<T> clazz, Long id)
Finds the given raw file subclass by id
-
move
void move(TempFile temp, StoredFile image)
Move the content of the given temporary file to a final destination
-
-