summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/embed/XStorage.idl
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-11-26 19:50:45 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-11-26 19:50:45 +0000
commitc0dd32e65cc77ff5fd961947cde50136c0953337 (patch)
treeffa469413803557f1d5db2c29650de267a988843 /offapi/com/sun/star/embed/XStorage.idl
parentbf3c7c2d080055616c938960b62d9e50640f6b3e (diff)
INTEGRATION: CWS storagechange01 (1.4.128); FILE MERGED
2004/10/28 17:19:27 mav 1.4.128.1: #i35095# introduce XStorageRawAccess implementation and redesing storage related idl structure
Diffstat (limited to 'offapi/com/sun/star/embed/XStorage.idl')
-rw-r--r--offapi/com/sun/star/embed/XStorage.idl49
1 files changed, 2 insertions, 47 deletions
diff --git a/offapi/com/sun/star/embed/XStorage.idl b/offapi/com/sun/star/embed/XStorage.idl
index 8c95da135f7e..f7145b6dbec0 100644
--- a/offapi/com/sun/star/embed/XStorage.idl
+++ b/offapi/com/sun/star/embed/XStorage.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XStorage.idl,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: obo $ $Date: 2004-11-17 12:35:52 $
+ * last change: $Author: hr $ $Date: 2004-11-26 20:50:45 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -685,51 +685,6 @@ interface XStorage
::com::sun::star::io::IOException,
::com::sun::star::embed::StorageWrappedTargetException );
- // -----------------------------------------------------------------------
- /** allows to insert a raw stream representing encrypted stream.
-
- <p>
- This method allows to transport encrypted streams without decryption.
- Mainly this method is introduced to allow to copy one encrypted
- storage stream to another without decryption. It is not reccomended to
- use this method outside of storage implementation since different
- storages implementation could have different encryption format.
- </p>
-
- @param sStreamName
- the name of the substream that should be open
-
- @param xInputStream
- a raw stream representing encrypted stream
-
- @throws ::com::sun::star::embed::InvalidStorageException
- this storage is in invalid state for any reason
-
- @throws ::com::sun::star::lang::IllegalArgumentException
- one of provided arguments is illegal
-
- @throws ::com::sun::star::packages::NoRawFormatException
- the stream is not one of raw package stream format
-
- @throws ::com::sun::star::container::ElementExistException
- an element with specified name already exists
-
- @throws ::com::sun::star::io::IOException
- in case of io errors during stream opening
-
- @throws ::com::sun::star::embed::StorageWrappedTargetException
- wraps other exceptions
- */
- void insertRawEncrStreamElement(
- [in] string sStreamName,
- [in] ::com::sun::star::io::XInputStream xInStream )
- raises( ::com::sun::star::embed::InvalidStorageException,
- ::com::sun::star::lang::IllegalArgumentException,
- ::com::sun::star::packages::NoRawFormatException,
- ::com::sun::star::container::ElementExistException,
- ::com::sun::star::io::IOException,
- ::com::sun::star::embed::StorageWrappedTargetException );
-
};
//============================================================================