|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface IStore
This is the interface providing methods for storing the content of documents and their versions.
| Method Summary | |
|---|---|
void |
delete(String id,
DMSObject obj)
Deletes the content identified by id from the storage of the DMS. |
byte[] |
get(String id,
DMSObject obj)
Returns the content identified by id from the storage of the DMS. |
void |
insert(String id,
byte[] content,
DMSObject obj)
Inserts the content identified by id into the storage of the DMS. |
void |
update(String id,
byte[] content,
DMSObject obj)
Updates the content identified by id in the storage of the DMS. |
| Method Detail |
|---|
void insert(String id,
byte[] content,
DMSObject obj)
id - identifies the contentcontent - the data to be storedobj - the object to which the content belongs to. It is passed if some store implementiation
needs additional information about the origin of the content.
void update(String id,
byte[] content,
DMSObject obj)
id - identifies the contentcontent - the new data to be storedobj - the object to which the content belongs to. It is passed if some store implementiation
needs additional information about the origin of the content.
void delete(String id,
DMSObject obj)
id - identifies the contentobj - the object to which the content belongs to. It is passed if some store implementiation
needs additional information about the origin of the content.
byte[] get(String id,
DMSObject obj)
id - identifies the contentobj - the object to which the content belongs to. It is passed if some store implementiation
needs additional information about the origin of the content.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||