QGIS API Documentation
2.6.0-Brighton
|
Default implementation of credentials interface. More...
#include <qgscredentials.h>
Signals | |
void | destroyed () |
signals that object will be destroyed and shouldn't be used anymore |
Public Member Functions | |
QgsCredentialsConsole () | |
Public Member Functions inherited from QgsCredentials | |
virtual | ~QgsCredentials () |
virtual destructor | |
bool | get (QString realm, QString &username, QString &password, QString message=QString::null) |
void | put (QString realm, QString username, QString password) |
void | lock () |
Lock the instance against access from multiple threads. | |
void | unlock () |
Unlock the instance after being locked. | |
QMutex * | mutex () |
Return pointer to mutex. |
Protected Member Functions | |
virtual bool | request (QString realm, QString &username, QString &password, QString message=QString::null) |
request a password | |
Protected Member Functions inherited from QgsCredentials | |
QgsCredentials () | |
void | setInstance (QgsCredentials *theInstance) |
register instance |
Additional Inherited Members | |
Static Public Member Functions inherited from QgsCredentials | |
static QgsCredentials * | instance () |
retrieves instance |
Default implementation of credentials interface.
This class outputs message to the standard output and retrieves input from standard input. Therefore it won't be the right choice for apps without GUI.
QgsCredentialsConsole::QgsCredentialsConsole | ( | ) |
|
signal |
signals that object will be destroyed and shouldn't be used anymore
|
protectedvirtual |
request a password
Implements QgsCredentials.