Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_UCB_URLAUTHENTICATIONREQUEST_HPP
2 : #define INCLUDED_COM_SUN_STAR_UCB_URLAUTHENTICATIONREQUEST_HPP
3 :
4 : #include "sal/config.h"
5 :
6 : #include "com/sun/star/ucb/URLAuthenticationRequest.hdl"
7 :
8 : #include "com/sun/star/ucb/AuthenticationRequest.hpp"
9 : #include "com/sun/star/uno/Type.hxx"
10 : #include "cppu/unotype.hxx"
11 : #include "osl/mutex.hxx"
12 : #include "rtl/ustring.hxx"
13 : #include "rtl/instance.hxx"
14 :
15 : namespace com { namespace sun { namespace star { namespace ucb {
16 :
17 0 : inline URLAuthenticationRequest::URLAuthenticationRequest() SAL_THROW(())
18 : : css::ucb::AuthenticationRequest()
19 0 : , URL()
20 0 : { }
21 :
22 : inline URLAuthenticationRequest::URLAuthenticationRequest(const ::rtl::OUString& Message_, const ::com::sun::star::uno::Reference< css::uno::XInterface >& Context_, const css::task::InteractionClassification& Classification_, const ::rtl::OUString& ServerName_, const ::rtl::OUString& Diagnostic_, const ::sal_Bool& HasRealm_, const ::rtl::OUString& Realm_, const ::sal_Bool& HasUserName_, const ::rtl::OUString& UserName_, const ::sal_Bool& HasPassword_, const ::rtl::OUString& Password_, const ::sal_Bool& HasAccount_, const ::rtl::OUString& Account_, const ::rtl::OUString& URL_) SAL_THROW(())
23 : : css::ucb::AuthenticationRequest(Message_, Context_, Classification_, ServerName_, Diagnostic_, HasRealm_, Realm_, HasUserName_, UserName_, HasPassword_, Password_, HasAccount_, Account_)
24 : , URL(URL_)
25 : { }
26 :
27 : URLAuthenticationRequest::URLAuthenticationRequest(URLAuthenticationRequest const & the_other): css::ucb::AuthenticationRequest(the_other), URL(the_other.URL) {}
28 :
29 0 : URLAuthenticationRequest::~URLAuthenticationRequest() {}
30 :
31 : URLAuthenticationRequest & URLAuthenticationRequest::operator =(URLAuthenticationRequest const & the_other) {
32 : //TODO: Just like its implicitly-defined counterpart, this function definition is not exception-safe
33 : css::ucb::AuthenticationRequest::operator =(the_other);
34 : URL = the_other.URL;
35 : return *this;
36 : }
37 :
38 : } } } }
39 :
40 : namespace com { namespace sun { namespace star { namespace ucb {
41 :
42 0 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::ucb::URLAuthenticationRequest const *) {
43 : static typelib_TypeDescriptionReference * the_type = 0;
44 0 : if ( !the_type )
45 : {
46 0 : typelib_static_type_init( &the_type, typelib_TypeClass_EXCEPTION, "com.sun.star.ucb.URLAuthenticationRequest" );
47 : }
48 0 : return * reinterpret_cast< ::com::sun::star::uno::Type * >( &the_type );
49 : }
50 :
51 : } } } }
52 :
53 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(SAL_UNUSED_PARAMETER css::ucb::URLAuthenticationRequest const *) SAL_THROW(()) {
54 : return ::cppu::UnoType< css::ucb::URLAuthenticationRequest >::get();
55 : }
56 :
57 : #endif // INCLUDED_COM_SUN_STAR_UCB_URLAUTHENTICATIONREQUEST_HPP
|