2012-09-17 12:41:29 +02:00
|
|
|
class QgsCredentials
|
|
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
|
|
#include <qgscredentials.h>
|
|
|
|
%End
|
2012-09-24 02:28:15 +02:00
|
|
|
|
2012-09-17 12:41:29 +02:00
|
|
|
public:
|
|
|
|
//! virtual destructor
|
|
|
|
virtual ~QgsCredentials();
|
|
|
|
|
2013-07-22 17:53:28 +02:00
|
|
|
bool get( QString realm, QString &username /In,Out/, QString &password /In,Out/, QString message = QString::null );
|
2012-09-17 12:41:29 +02:00
|
|
|
void put( QString realm, QString username, QString password );
|
|
|
|
|
|
|
|
//! retrieves instance
|
|
|
|
static QgsCredentials *instance();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
//! request a password
|
2012-11-29 11:33:28 +02:00
|
|
|
virtual bool request( QString realm, QString &username /In,Out/, QString &password /In,Out/, QString message = QString::null ) = 0;
|
2012-09-17 12:41:29 +02:00
|
|
|
|
|
|
|
//! register instance
|
|
|
|
void setInstance( QgsCredentials *theInstance );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class QgsCredentialsConsole : QObject, QgsCredentials
|
|
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
|
|
#include <qgscredentials.h>
|
|
|
|
%End
|
|
|
|
|
|
|
|
public:
|
|
|
|
QgsCredentialsConsole();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
//! signals that object will be destroyed and shouldn't be used anymore
|
|
|
|
void destroyed();
|
|
|
|
|
|
|
|
protected:
|
2012-11-29 11:33:28 +02:00
|
|
|
virtual bool request( QString realm, QString &username /In,Out/, QString &password /In,Out/, QString message = QString::null );
|
2012-09-17 12:41:29 +02:00
|
|
|
};
|