summaryrefslogtreecommitdiff
path: root/dbaccess/source/inc/OAuthenticationContinuation.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/inc/OAuthenticationContinuation.hxx')
-rw-r--r--dbaccess/source/inc/OAuthenticationContinuation.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/dbaccess/source/inc/OAuthenticationContinuation.hxx b/dbaccess/source/inc/OAuthenticationContinuation.hxx
index 39236c097644..2228b36b5505 100644
--- a/dbaccess/source/inc/OAuthenticationContinuation.hxx
+++ b/dbaccess/source/inc/OAuthenticationContinuation.hxx
@@ -41,28 +41,28 @@ class OOO_DLLPUBLIC_DBA OAuthenticationContinuation :
sal_Bool m_bRemberPassword : 1; // remember the password for this session ?
sal_Bool m_bCanSetUserName;
- ::rtl::OUString m_sUser; // the user
- ::rtl::OUString m_sPassword; // the user's password
+ OUString m_sUser; // the user
+ OUString m_sPassword; // the user's password
public:
OAuthenticationContinuation();
sal_Bool SAL_CALL canSetRealm( ) throw(com::sun::star::uno::RuntimeException);
- void SAL_CALL setRealm( const ::rtl::OUString& Realm ) throw(com::sun::star::uno::RuntimeException);
+ void SAL_CALL setRealm( const OUString& Realm ) throw(com::sun::star::uno::RuntimeException);
sal_Bool SAL_CALL canSetUserName( ) throw(com::sun::star::uno::RuntimeException);
- void SAL_CALL setUserName( const ::rtl::OUString& UserName ) throw(com::sun::star::uno::RuntimeException);
+ void SAL_CALL setUserName( const OUString& UserName ) throw(com::sun::star::uno::RuntimeException);
sal_Bool SAL_CALL canSetPassword( ) throw(com::sun::star::uno::RuntimeException);
- void SAL_CALL setPassword( const ::rtl::OUString& Password ) throw(com::sun::star::uno::RuntimeException);
+ void SAL_CALL setPassword( const OUString& Password ) throw(com::sun::star::uno::RuntimeException);
com::sun::star::uno::Sequence< com::sun::star::ucb::RememberAuthentication > SAL_CALL getRememberPasswordModes( com::sun::star::ucb::RememberAuthentication& Default ) throw(com::sun::star::uno::RuntimeException);
void SAL_CALL setRememberPassword( com::sun::star::ucb::RememberAuthentication Remember ) throw(com::sun::star::uno::RuntimeException);
sal_Bool SAL_CALL canSetAccount( ) throw(com::sun::star::uno::RuntimeException);
- void SAL_CALL setAccount( const ::rtl::OUString& Account ) throw(com::sun::star::uno::RuntimeException);
+ void SAL_CALL setAccount( const OUString& Account ) throw(com::sun::star::uno::RuntimeException);
com::sun::star::uno::Sequence< com::sun::star::ucb::RememberAuthentication > SAL_CALL getRememberAccountModes( com::sun::star::ucb::RememberAuthentication& Default ) throw(com::sun::star::uno::RuntimeException);
void SAL_CALL setRememberAccount( com::sun::star::ucb::RememberAuthentication Remember ) throw(com::sun::star::uno::RuntimeException);
void setCanChangeUserName( sal_Bool bVal ) { m_bCanSetUserName = bVal; }
- ::rtl::OUString getUser() const { return m_sUser; }
- ::rtl::OUString getPassword() const { return m_sPassword; }
+ OUString getUser() const { return m_sUser; }
+ OUString getPassword() const { return m_sPassword; }
sal_Bool getRememberPassword() const { return m_bRemberPassword; }
};