summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-06-18 14:53:58 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-06-18 14:53:58 +0000
commit87c8bfaa96409ed2bc7b0ff21da2d04b08dfd7fd (patch)
treeea1a5cfedcf0d2e72d2bcfd1ccb4741304ddc5e3 /offapi
parentc185bf9c436641085dc93b70fa95d8b3c7d3c067 (diff)
INTEGRATION: CWS cfgapi (1.2.316); FILE MERGED
2004/06/14 14:41:59 ssmith 1.2.316.2: RESYNC: (1.2-1.3); FILE MERGED 2004/06/02 13:49:54 ssmith 1.2.316.1: #23249# #28723# updating DefaultProvider service
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/configuration/DefaultProvider.idl36
1 files changed, 34 insertions, 2 deletions
diff --git a/offapi/com/sun/star/configuration/DefaultProvider.idl b/offapi/com/sun/star/configuration/DefaultProvider.idl
index 75aaca075266..b66edf4c8a8a 100644
--- a/offapi/com/sun/star/configuration/DefaultProvider.idl
+++ b/offapi/com/sun/star/configuration/DefaultProvider.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: DefaultProvider.idl,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: obo $ $Date: 2004-06-03 18:08:46 $
+ * last change: $Author: hr $ $Date: 2004-06-18 15:53:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -65,6 +65,19 @@
#include <com/sun/star/configuration/ConfigurationProvider.idl>
#endif
+#ifndef __com_sun_star_util_XRefreshable_idl__
+#include <com/sun/star/util/XRefreshable.idl>
+#endif
+
+#ifndef __com_sun_star_util_XFlushable_idl__
+#include <com/sun/star/util/XFlushable.idl>
+#endif
+
+#ifndef __com_sun_star_lang_XLocalizable_idl__
+#include <com/sun/star/lang/XLocalizable.idl>
+#endif
+
+
//=============================================================================
module com { module sun { module star { module configuration {
@@ -88,6 +101,25 @@ published service DefaultProvider
*/
service ConfigurationProvider ;
+ /**Provides refresh capabilities, data can be refreshed from the backend(s) into
+ the in-memory cache.
+ */
+ [optional] interface com::sun::star::util::XRefreshable;
+
+ /** Enables the data to be flushed from the in-memory cache to the backend(s).
+ */
+ [optional] interface com::sun::star::util::XFlushable;
+
+ /** Enable setting/getting locale for Provider
+ */
+
+ [optional] interface com::sun::star::lang::XLocalizable;
+
+ /** Property to enable/disable asynchronous write-back from in-memory cache to backend(s)
+ */
+
+ [optional,property] boolean enableAsync;
+
//-------------------------------------------------------------------------
} ;