summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/btr/proxy/search/browser/firefox/FirefoxProfileSource.java
blob: 8517074be708d9ba7dba5a7e30343723a219f843 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.btr.proxy.search.browser.firefox;

import java.io.File;
import java.io.IOException;

/*****************************************************************************
 * A profile source for Firefox profiles. 
 * 
 * @author Bernd Rosstauscher (proxyvole@rosstauscher.de) Copyright 2009
 ****************************************************************************/

interface FirefoxProfileSource {
	
	/*************************************************************************
	 * Gets a profile folder found on the current system.
	 * If multiple profile folders are available the "default" profile is chosen. 
	 * @return a profile folder.
	 * @throws IOException on error.
	 ************************************************************************/
	
	public File getProfileFolder() throws IOException;

}