javax.jnlp
Interface PersistenceService
public interface PersistenceService
Method Summary |
long |
create(java.net.URL url,
long maxsize)
|
void |
delete(java.net.URL url)
|
FileContents |
get(java.net.URL url)
|
java.lang.String[] |
getNames(java.net.URL url)
|
int |
getTag(java.net.URL url)
|
void |
setTag(java.net.URL url,
int tag)
|
CACHED
static final int CACHED
- See Also:
- Constant Field Values
TEMPORARY
static final int TEMPORARY
- See Also:
- Constant Field Values
DIRTY
static final int DIRTY
- See Also:
- Constant Field Values
create
long create(java.net.URL url,
long maxsize)
throws java.net.MalformedURLException,
java.io.IOException
- Throws:
java.net.MalformedURLException
java.io.IOException
get
FileContents get(java.net.URL url)
throws java.net.MalformedURLException,
java.io.IOException,
java.io.FileNotFoundException
- Throws:
java.net.MalformedURLException
java.io.IOException
java.io.FileNotFoundException
delete
void delete(java.net.URL url)
throws java.net.MalformedURLException,
java.io.IOException
- Throws:
java.net.MalformedURLException
java.io.IOException
getNames
java.lang.String[] getNames(java.net.URL url)
throws java.net.MalformedURLException,
java.io.IOException
- Throws:
java.net.MalformedURLException
java.io.IOException
getTag
int getTag(java.net.URL url)
throws java.net.MalformedURLException,
java.io.IOException
- Throws:
java.net.MalformedURLException
java.io.IOException
setTag
void setTag(java.net.URL url,
int tag)
throws java.net.MalformedURLException,
java.io.IOException
- Throws:
java.net.MalformedURLException
java.io.IOException
Submit a bug or feature