diff options
author | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2012-10-09 10:47:32 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2012-10-11 17:31:17 +0200 |
commit | f5a84d8c1a44d82f2ca96a3d219a4cb05ab71a39 (patch) | |
tree | b77f960a094406e1ad3eecc8e7402a97ba300754 /offapi/com | |
parent | 97aa108f2b595145d63b00d515489030a849957e (diff) |
CMIS: Provide the CMIS properties in the UNO API of documents
Change-Id: Ieb48f615a80e1fa2d49b4efada1f8f9fc4349c29
Diffstat (limited to 'offapi/com')
-rw-r--r-- | offapi/com/sun/star/document/XCmisDocument.idl | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/offapi/com/sun/star/document/XCmisDocument.idl b/offapi/com/sun/star/document/XCmisDocument.idl new file mode 100644 index 000000000000..246a1b7f3d10 --- /dev/null +++ b/offapi/com/sun/star/document/XCmisDocument.idl @@ -0,0 +1,35 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ +#ifndef __com_sun_star_document_XCmisDataSupplier_idl__ +#define __com_sun_star_document_XCmisDataSupplier_idl__ + +#include <com/sun/star/beans/PropertyValues.idl> +#include <com/sun/star/uno/XInterface.idl> + +module com { module sun { module star { module document { + +/** The document can provide access to CMIS properties and versions + through this interface. + */ +interface XCmisDocument : com::sun::star::uno::XInterface +{ + /** Contains the properties values named after their CMIS ID. + */ + [attribute] com::sun::star::beans::PropertyValues CmisPropertiesValues; + + /** Contains the property names to show to the user from their CMIS id. + */ + [attribute] com::sun::star::beans::PropertyValues CmisPropertiesDisplayNames; +}; + +}; }; }; }; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |