Temp file manager. Temp file managers are created 1-to-1 with incoming requests, to create and cleanup temporary files created as a result of handling the request.
| 1805 | * </p> |
| 1806 | */ |
| 1807 | public interface TempFileManager { |
| 1808 | |
| 1809 | void clear(); |
| 1810 | |
| 1811 | public TempFile createTempFile(String filename_hint) throws Exception; |
| 1812 | } |
| 1813 | |
| 1814 | /** |
| 1815 | * Factory to create temp file managers. |
no outgoing calls
no test coverage detected
searching dependent graphs…