:: com :: sun :: star :: document ::

interface XCmisDocument

Methods' Summary
checkOut Check out the document into a private working copy on the server, and update the loaded document to reflect this change.  
cancelCheckOut Cancel checked out document, this will discard all changes since check-out.  
checkIn Creates a new version of the document from the private working copy.  
isVersionable Tells whether a document can support versioning or not.  
canCheckOut  
canCancelCheckOut  
canCheckIn  
updateCmisProperties  
getAllVersions  
Attributes' Summary
CmisProperties Contains the properties values named after their CMIS ID.  
Methods' Details
checkOut
void
checkOut();

Description
Check out the document into a private working copy on the server, and update the loaded document to reflect this change.
cancelCheckOut
void
cancelCheckOut();

Description
Cancel checked out document, this will discard all changes since check-out.
checkIn
void
checkIn( [in] boolean  isMajor,
[in] string  comment );

Description
Creates a new version of the document from the private working copy.
isVersionable
boolean
isVersionable();

Description
Tells whether a document can support versioning or not.
canCheckOut
boolean
canCheckOut();

canCancelCheckOut
boolean
canCancelCheckOut();

canCheckIn
boolean
canCheckIn();

updateCmisProperties
void
updateCmisProperties( [in] sequence< CmisProperty >  cmisProperties );

getAllVersions
sequence< CmisVersion >
getAllVersions();

Attributes' Details
CmisProperties
sequence< CmisProperty > CmisProperties;
Description
Contains the properties values named after their CMIS ID.
Top of Page