Interface TempFileService
-
public interface TempFileService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.flower.docs.domain.file.DocumentFile
create(com.flower.docs.domain.file.DocumentFile tempFile)
void
delete(com.flower.docs.domain.common.Id id)
com.flower.docs.domain.file.DocumentFile
get(com.flower.docs.domain.common.Id id)
-
-
-
Method Detail
-
create
com.flower.docs.domain.file.DocumentFile create(com.flower.docs.domain.file.DocumentFile tempFile) throws com.flower.docs.domain.exception.TechnicalException, com.flower.docs.domain.exception.FunctionalException
- Throws:
com.flower.docs.domain.exception.TechnicalException
com.flower.docs.domain.exception.FunctionalException
-
get
com.flower.docs.domain.file.DocumentFile get(com.flower.docs.domain.common.Id id) throws com.flower.docs.domain.exception.TechnicalException, com.flower.docs.domain.exception.FunctionalException
- Throws:
com.flower.docs.domain.exception.TechnicalException
com.flower.docs.domain.exception.FunctionalException
-
delete
void delete(com.flower.docs.domain.common.Id id) throws com.flower.docs.domain.exception.TechnicalException, com.flower.docs.domain.exception.FunctionalException
- Throws:
com.flower.docs.domain.exception.TechnicalException
com.flower.docs.domain.exception.FunctionalException
-
-