|
|||||||||
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)
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(java.lang.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(java.lang.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(java.lang.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 |