summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorCao Cuong Ngo <cao.cuong.ngo@gmail.com>2013-08-02 15:04:40 +0200
committerCédric Bosdonnat <cedric.bosdonnat.ooo@free.fr>2013-09-02 13:51:54 +0200
commitff8b445dc003ea9da8d7040030250e7f08ff2fde (patch)
tree13bcd29d490b9052c1e235b92c10eeb36a492fff /offapi
parentf6c006397896ae8b431a0ab85c89ab677d6ab981 (diff)
CMIS: add document ID when saving.
The document ID is needed in case the get object by path of the CMIS document doesn't work (like Google Drive) Change-Id: I151d5433a19caeaf4a542b69cd9e95dde58722e7
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/ucb/GlobalTransferCommandArgument2.idl6
-rw-r--r--offapi/com/sun/star/ucb/InsertCommandArgument2.idl5
2 files changed, 10 insertions, 1 deletions
diff --git a/offapi/com/sun/star/ucb/GlobalTransferCommandArgument2.idl b/offapi/com/sun/star/ucb/GlobalTransferCommandArgument2.idl
index 7169ba9afbf2..d7ba69b31a06 100644
--- a/offapi/com/sun/star/ucb/GlobalTransferCommandArgument2.idl
+++ b/offapi/com/sun/star/ucb/GlobalTransferCommandArgument2.idl
@@ -15,13 +15,17 @@
module com { module sun { module star { module ucb {
/** This struct extends the one for transfers arguments by adding a Mime
- type property to it.
+ type and a Document Id property to it.
*/
struct GlobalTransferCommandArgument2 : GlobalTransferCommandArgument
{
/** contains the MIME type of the source object.
*/
string MimeType;
+
+ /** contains the DocumentId of the source object.
+ */
+ string DocumentId;
};
diff --git a/offapi/com/sun/star/ucb/InsertCommandArgument2.idl b/offapi/com/sun/star/ucb/InsertCommandArgument2.idl
index 510554327a78..c3d1ab883863 100644
--- a/offapi/com/sun/star/ucb/InsertCommandArgument2.idl
+++ b/offapi/com/sun/star/ucb/InsertCommandArgument2.idl
@@ -21,6 +21,11 @@ struct InsertCommandArgument2 : InsertCommandArgument
/** contains the MIME type of the document to insert
*/
string MimeType;
+
+ /** contains the Document Id of the document to insert
+ */
+ string DocumentId;
+
};