summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav/DAVSession.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav/DAVSession.hxx')
-rw-r--r--ucb/source/ucp/webdav/DAVSession.hxx57
1 files changed, 19 insertions, 38 deletions
diff --git a/ucb/source/ucp/webdav/DAVSession.hxx b/ucb/source/ucp/webdav/DAVSession.hxx
index 4a28d40a8d27..1c6a8c0e01aa 100644
--- a/ucb/source/ucp/webdav/DAVSession.hxx
+++ b/ucb/source/ucp/webdav/DAVSession.hxx
@@ -79,49 +79,42 @@ public:
const Depth inDepth,
const std::vector< OUString > & inPropertyNames,
std::vector< DAVResource > & ioResources,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
// propnames
/// @throws DAVException
virtual void PROPFIND( const OUString & inPath,
const Depth inDepth,
std::vector< DAVResourceInfo > & ioResInfo,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual void PROPPATCH( const OUString & inPath,
const std::vector< ProppatchValue > & inValues,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual void HEAD( const OUString & inPath,
const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual css::uno::Reference< css::io::XInputStream >
GET( const OUString & inPath,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual void GET( const OUString & inPath,
css::uno::Reference< css::io::XOutputStream >& o,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual css::uno::Reference< css::io::XInputStream >
GET( const OUString & inPath,
const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual void
@@ -129,14 +122,12 @@ public:
css::uno::Reference< css::io::XOutputStream >& o,
const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual void PUT( const OUString & inPath,
const css::uno::Reference< css::io::XInputStream >& s,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual css::uno::Reference< css::io::XInputStream >
@@ -144,8 +135,7 @@ public:
const OUString & rContentType,
const OUString & rReferer,
const css::uno::Reference< css::io::XInputStream > & inInputStream,
- const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual void POST( const OUString & inPath,
@@ -153,55 +143,46 @@ public:
const OUString & rReferer,
const css::uno::Reference< css::io::XInputStream > & inInputStream,
css::uno::Reference< css::io::XOutputStream > & oOutputStream,
- const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual void MKCOL( const OUString & inPath,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual void COPY( const OUString & inSource,
const OUString & inDestination,
const DAVRequestEnvironment & rEnv,
- bool inOverwrite = false )
- throw( DAVException ) = 0;
+ bool inOverwrite = false ) = 0;
/// @throws DAVException
virtual void MOVE( const OUString & inSource,
const OUString & inDestination,
const DAVRequestEnvironment & rEnv,
- bool inOverwrite = false )
- throw( DAVException ) = 0;
+ bool inOverwrite = false ) = 0;
/// @throws DAVException
virtual void DESTROY( const OUString & inPath,
- const DAVRequestEnvironment & rEnv )
- throw( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
// set new lock.
/// @throws DAVException
virtual void LOCK( const OUString & inPath,
css::ucb::Lock & inLock,
- const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
// refresh existing lock.
/// @throws DAVException
virtual sal_Int64 LOCK( const OUString & inPath,
sal_Int64 nTimeout,
- const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
virtual void UNLOCK( const OUString & inPath,
- const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws DAVException
- virtual void abort()
- throw( DAVException ) = 0;
+ virtual void abort() = 0;
protected:
rtl::Reference< DAVSessionFactory > m_xFactory;