17 #ifndef QGSCREDENTIALS_H 18 #define QGSCREDENTIALS_H 26 #include "qgis_core.h" 50 bool get(
const QString &realm, QString &username
SIP_INOUT, QString &password
SIP_INOUT,
const QString &message = QString() );
51 void put(
const QString &realm,
const QString &username,
const QString &password );
53 bool getMasterPassword( QString &password SIP_INOUT,
bool stored =
false );
76 QMutex *
mutex() {
return &mMutex; }
86 virtual bool request(
const QString &realm, QString &username SIP_INOUT, QString &password SIP_INOUT,
const QString &message = QString() ) = 0;
89 virtual bool requestMasterPassword( QString &password SIP_INOUT,
bool stored =
false ) = 0;
102 QMap< QString, QPair<QString, QString> > mCredentialCache;
105 static QgsCredentials *sInstance;
129 bool request(
const QString &realm, QString &username
SIP_INOUT, QString &password SIP_INOUT,
const QString &message = QString() )
override;
154 bool request(
const QString &realm, QString &username
SIP_INOUT, QString &password SIP_INOUT,
const QString &message = QString() )
override;
Interface for requesting credentials in QGIS in GUI independent way.
virtual bool requestMasterPassword(QString &password, bool stored=false)=0
request a master password
Default implementation of credentials interface.
virtual bool request(const QString &realm, QString &username, QString &password, const QString &message=QString())=0
request a password
Implementation of credentials interface for the console.
QMutex * mutex()
Return pointer to mutex.