1 package com.atlassian.core.spool;
2
3 /**
4 * Interface for file based spools. Such spools can be configured with a FileFactory to strategise the creation
5 * of files by the spool.
6 */
7 public interface FileSpool extends Spool
8 {
9 public FileFactory getFileFactory();
10 public void setFileFactory(FileFactory fileFactory);
11 }