16#ifndef QGSAUTHCONFIGURATIONSTORAGEREGISTRY_H 
   17#define QGSAUTHCONFIGURATIONSTORAGEREGISTRY_H 
   69    bool removeStorage( 
const QString &
id );
 
   74    QList<QgsAuthConfigurationStorage *> storages() 
const;
 
   79    QList<QgsAuthConfigurationStorage *> readyStorages() 
const;
 
  105    void setStorageOrder( 
const QStringList &orderIds );
 
  130    mutable QMutex mMutex;
 
  132    std::vector<std::unique_ptr<QgsAuthConfigurationStorage>> mStorages;
 
 
AuthConfigurationStorageCapability
Authentication configuration storage capabilities.
 
Registry for authentication configuration storages.
 
void storageChanged(const QString &id)
Emitted after a storage was changed.
 
void storageRemoved(const QString &id)
Emitted after a storage was removed.
 
void storageAdded(const QString &id)
Emitted after a storage was added.
 
Abstract class that defines the interface for all authentication configuration storage implementation...