1 /*
2 * Created on Mar 5, 2005
3 */
4 package org.jdiagnose.remote.file;
5
6 import java.io.File;
7
8 /***
9 * @author jamie
10 */
11 public class TmpFileFactory implements FileFactory {
12
13 public static final String JAVA_IO_TMPDIR = System.getProperty("java.io.tmpdir");
14
15 public File getFile(String fileName) {
16 return new File(JAVA_IO_TMPDIR, fileName);
17 }
18
19 }