|
|||||||||
| 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(java.lang.String id,
DMSObject obj)
Deletes the content identified by id from the storage of the DMS. |
byte[] |
get(java.lang.String id,
DMSObject obj)
Returns the content identified by id from the storage of the DMS. |
void |
insert(java.lang.String id,
byte[] content,
DMSObject obj)
Inserts the content identified by id into the storage of the DMS. |
void |
update(java.lang.String id,
byte[] content,
DMSObject obj)
Updates the content identified by id in the storage of the DMS. |
| Method Detail |
|---|
void insert(java.lang.String id,
byte[] content,
DMSObject obj)
throws java.lang.Exception
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.
java.lang.Exception
void update(java.lang.String id,
byte[] content,
DMSObject obj)
throws java.lang.Exception
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.
java.lang.Exception
void delete(java.lang.String id,
DMSObject obj)
throws java.lang.Exception
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.
java.lang.Exception
byte[] get(java.lang.String id,
DMSObject obj)
throws java.lang.Exception
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.
java.lang.Exception
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||