Tag: cws_src680_dba24b User: fs Date: 2007-08-28 13:27:42+0000 Modified: dba/dbaccess/source/ui/inc/dsmeta.hxx
Log: +AuthenticationMode/getAuthentication File Changes: Directory: /dba/dbaccess/source/ui/inc/ ======================================= File [changed]: dsmeta.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/inc/dsmeta.hxx?r1=1.1.2.3&r2=1.1.2.4 Delta lines: +17 -2 -------------------- --- dsmeta.hxx 2007-08-27 20:29:42+0000 1.1.2.3 +++ dsmeta.hxx 2007-08-28 13:27:40+0000 1.1.2.4 @@ -4,9 +4,9 @@ * * $RCSfile: dsmeta.hxx,v $ * - * $Revision: 1.1.2.3 $ + * $Revision: 1.1.2.4 $ * - * last change: $Author: fs $ $Date: 2007/08/27 20:29:42 $ + * last change: $Author: fs $ $Date: 2007/08/28 13:27:40 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -49,6 +49,16 @@ //........................................................................ //==================================================================== + //= AutheticationMode + //==================================================================== + enum AuthenticationMode + { + AuthNone, + AuthUserPwd, + AuthPwd + }; + + //==================================================================== //= DataSourceMetaData //==================================================================== struct AdvancedSettingsSupport; @@ -74,6 +84,11 @@ /// returns a struct describing this data source type's support for our known advanced settings const AdvancedSettingsSupport& getAdvancedSettingsSupport() const; + /// determines whether or not the data source requires authentication + AuthenticationMode getAuthentication() const; + + static AuthenticationMode getAuthentication( DATASOURCE_TYPE _eType ); + private: ::boost::shared_ptr< DataSourceMetaData_Impl > m_pImpl; }; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
