summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav/DAVAuthListener.hxx
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2002-08-15 09:05:30 +0000
committerKai Sommerfeld <kso@openoffice.org>2002-08-15 09:05:30 +0000
commitf68200e5fc1b106f7125a79a84476fd4d5e1485d (patch)
treefa77fc02c9c84343083c7f28d34dbd4bf51b44dd /ucb/source/ucp/webdav/DAVAuthListener.hxx
parent5ec3370446de39335e109f65c6ff451a0ab0a221 (diff)
#96458# - Switched to new neon version (0.22.0)
- No longer needs tempfiles for PUT/POST
Diffstat (limited to 'ucb/source/ucp/webdav/DAVAuthListener.hxx')
-rw-r--r--ucb/source/ucp/webdav/DAVAuthListener.hxx23
1 files changed, 10 insertions, 13 deletions
diff --git a/ucb/source/ucp/webdav/DAVAuthListener.hxx b/ucb/source/ucp/webdav/DAVAuthListener.hxx
index 7cebe028f407..51b6bef40153 100644
--- a/ucb/source/ucp/webdav/DAVAuthListener.hxx
+++ b/ucb/source/ucp/webdav/DAVAuthListener.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: DAVAuthListener.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: kso $ $Date: 2001-05-16 15:29:59 $
+ * last change: $Author: kso $ $Date: 2002-08-15 10:05:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,9 +61,6 @@
#ifndef _DAVAUTHLISTENER_HXX_
#define _DAVAUTHLISTENER_HXX_
-#ifndef _RTL_USTRBUF_HXX_
-#include <rtl/ustrbuf.hxx>
-#endif
#ifndef _RTL_USTRING_HXX_
#include <rtl/ustring.hxx>
#endif
@@ -82,15 +79,15 @@ namespace webdav_ucp
class DAVAuthListener
{
public:
- virtual int authenticate(const ::rtl::OUString & inRealm,
- const ::rtl::OUString & inHostName,
- ::rtl::OUStringBuffer & inUserName,
- ::rtl::OUStringBuffer & inPassWord,
- const com::sun::star::uno::Reference<
- com::sun::star::ucb::XCommandEnvironment >& inEnv)
- = 0;
- virtual ~DAVAuthListener() {}
+ virtual int authenticate(
+ const ::rtl::OUString & inRealm,
+ const ::rtl::OUString & inHostName,
+ ::rtl::OUString & inoutUserName,
+ ::rtl::OUString & outPassWord,
+ const com::sun::star::uno::Reference<
+ com::sun::star::ucb::XCommandEnvironment >& inEnv ) = 0;
};
}; // namespace webdav_ucp
+
#endif // _DAVAUTHLISTENER_HXX_