Package | Description |
---|---|
net.ontopia.infoset.content |
Modifier and Type | Method and Description |
---|---|
int |
FileContentStore.add(ContentInputStream data) |
int |
ContentStoreIF.add(ContentInputStream data)
INTERNAL: Creates an entry for the specified data value.
|
int |
InMemoryContentStore.add(ContentInputStream data) |
int |
JDBCSequenceContentStore.add(ContentInputStream data) |
int |
JDBCContentStore.add(ContentInputStream data) |
int |
FileContentStore.add(InputStream data,
int length) |
int |
ContentStoreIF.add(InputStream data,
int length)
INTERNAL: Creates an entry for the specified data value.
|
int |
InMemoryContentStore.add(InputStream data,
int length) |
int |
JDBCSequenceContentStore.add(InputStream data,
int length) |
int |
JDBCContentStore.add(InputStream data,
int length) |
void |
FileContentStore.close() |
void |
ContentStoreIF.close()
INTERNAL: Closes the content store.
|
void |
InMemoryContentStore.close() |
void |
JDBCSequenceContentStore.close() |
void |
JDBCContentStore.close() |
boolean |
FileContentStore.containsKey(int key) |
boolean |
ContentStoreIF.containsKey(int key)
INTERNAL: Returns true if the content store contains an entry with
the specified key.
|
boolean |
InMemoryContentStore.containsKey(int key) |
boolean |
JDBCSequenceContentStore.containsKey(int key) |
boolean |
JDBCContentStore.containsKey(int key) |
ContentInputStream |
FileContentStore.get(int key) |
ContentInputStream |
ContentStoreIF.get(int key)
INTERNAL: Gets the data value associated with the specified key.
|
ContentInputStream |
InMemoryContentStore.get(int key) |
ContentInputStream |
JDBCSequenceContentStore.get(int key) |
ContentInputStream |
JDBCContentStore.get(int key) |
protected ContentStoreIF |
ContentStoreServlet.getContentStore(TopicMapIF tm,
javax.servlet.ServletContext ctxt) |
boolean |
FileContentStore.remove(int key) |
boolean |
ContentStoreIF.remove(int key)
INTERNAL: Removes the entry associated with the key.
|
boolean |
InMemoryContentStore.remove(int key) |
boolean |
JDBCSequenceContentStore.remove(int key) |
boolean |
JDBCContentStore.remove(int key) |
Constructor and Description |
---|
FileContentStore(File store_root) |