summaryrefslogtreecommitdiffstats
path: root/ucb/source/ucp/webdav-neon/DAVSession.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav-neon/DAVSession.hxx')
-rw-r--r--ucb/source/ucp/webdav-neon/DAVSession.hxx60
1 files changed, 20 insertions, 40 deletions
diff --git a/ucb/source/ucp/webdav-neon/DAVSession.hxx b/ucb/source/ucp/webdav-neon/DAVSession.hxx
index 5516a26a215f..58839c80a47f 100644
--- a/ucb/source/ucp/webdav-neon/DAVSession.hxx
+++ b/ucb/source/ucp/webdav-neon/DAVSession.hxx
@@ -78,8 +78,7 @@ public:
/// @throws std::exception
virtual void OPTIONS( const OUString & inPath,
DAVOptions& rOptions,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
// allprop & named
/// @throws std::exception
@@ -87,49 +86,42 @@ public:
const Depth inDepth,
const std::vector< OUString > & inPropertyNames,
std::vector< DAVResource > & ioResources,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
// propnames
/// @throws std::exception
virtual void PROPFIND( const OUString & inPath,
const Depth inDepth,
std::vector< DAVResourceInfo > & ioResInfo,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual void PROPPATCH( const OUString & inPath,
const std::vector< ProppatchValue > & inValues,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual void HEAD( const OUString & inPath,
const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual css::uno::Reference< css::io::XInputStream >
GET( const OUString & inPath,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual void GET( const OUString & inPath,
css::uno::Reference< css::io::XOutputStream >& o,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual css::uno::Reference< css::io::XInputStream >
GET( const OUString & inPath,
const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
// used as HEAD substitute when HEAD is not implemented on server
/// @throws std::exception
@@ -137,8 +129,7 @@ public:
GET0( const OUString & inPath,
const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual void
@@ -146,14 +137,12 @@ public:
css::uno::Reference< css::io::XOutputStream >& o,
const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual void PUT( const OUString & inPath,
const css::uno::Reference< css::io::XInputStream >& s,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual css::uno::Reference< css::io::XInputStream >
@@ -161,8 +150,7 @@ public:
const OUString & rContentType,
const OUString & rReferer,
const css::uno::Reference< css::io::XInputStream > & inInputStream,
- const DAVRequestEnvironment & rEnv )
- throw ( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual void POST( const OUString & inPath,
@@ -170,48 +158,40 @@ public:
const OUString & rReferer,
const css::uno::Reference< css::io::XInputStream > & inInputStream,
css::uno::Reference< css::io::XOutputStream > & oOutputStream,
- const DAVRequestEnvironment & rEnv )
- throw ( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual void MKCOL( const OUString & inPath,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual void COPY( const OUString & inSource,
const OUString & inDestination,
const DAVRequestEnvironment & rEnv,
- bool inOverwrite )
- throw( std::exception ) = 0;
+ bool inOverwrite ) = 0;
/// @throws std::exception
virtual void MOVE( const OUString & inSource,
const OUString & inDestination,
const DAVRequestEnvironment & rEnv,
- bool inOverwrite )
- throw( std::exception ) = 0;
+ bool inOverwrite ) = 0;
/// @throws std::exception
virtual void DESTROY( const OUString & inPath,
- const DAVRequestEnvironment & rEnv )
- throw( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
// set new lock.
/// @throws std::exception
virtual void LOCK( const OUString & inPath,
css::ucb::Lock & inLock,
- const DAVRequestEnvironment & rEnv )
- throw ( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
virtual void UNLOCK( const OUString & inPath,
- const DAVRequestEnvironment & rEnv )
- throw ( std::exception ) = 0;
+ const DAVRequestEnvironment & rEnv ) = 0;
/// @throws std::exception
- virtual void abort()
- throw( std::exception ) = 0;
+ virtual void abort() = 0;
protected:
rtl::Reference< DAVSessionFactory > m_xFactory;