public interface ContentStoreIF
| Modifier and Type | Method and Description |
|---|---|
int |
add(ContentInputStream data)
INTERNAL: Creates an entry for the specified data value.
|
int |
add(InputStream data,
int length)
INTERNAL: Creates an entry for the specified data value.
|
void |
close()
INTERNAL: Closes the content store.
|
boolean |
containsKey(int key)
INTERNAL: Returns true if the content store contains an entry with
the specified key.
|
ContentInputStream |
get(int key)
INTERNAL: Gets the data value associated with the specified key.
|
boolean |
remove(int key)
INTERNAL: Removes the entry associated with the key.
|
boolean containsKey(int key)
throws ContentStoreException
ContentStoreExceptionContentInputStream get(int key) throws ContentStoreException
ContentStoreExceptionint add(ContentInputStream data) throws ContentStoreException
ContentStoreExceptionint add(InputStream data, int length) throws ContentStoreException
ContentStoreExceptionboolean remove(int key)
throws ContentStoreException
ContentStoreExceptionvoid close()
throws ContentStoreException
ContentStoreException