QGIS API Documentation  3.26.3-Buenos Aires (65e4edfdad)
qgsauthmethodmetadata.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsauthmethodmetadata.cpp
3  ---------------------
4  begin : September 1, 2015
5  copyright : (C) 2015 by Boundless Spatial, Inc. USA
6  author : Larry Shaffer
7  email : lshaffer at boundlessgeo dot com
8  ***************************************************************************
9  * *
10  * This program is free software; you can redistribute it and/or modify *
11  * it under the terms of the GNU General Public License as published by *
12  * the Free Software Foundation; either version 2 of the License, or *
13  * (at your option) any later version. *
14  * *
15  ***************************************************************************/
16 
17 #include <QStringList>
18 
19 #include "qgsauthmethodmetadata.h"
20 
21 
22 
23 
25 {
26  return mKey;
27 }
28 
30 {
31  return mDescription;
32 }
33 
35 {
36  return mLibrary;
37 }
38 
40 {
41  return nullptr;
42 }
43 
44 
QgsAuthMethod
Abstract base class for authentication method plugins.
Definition: qgsauthmethod.h:42
qgsauthmethodmetadata.h
QgsAuthMethodMetadata::createAuthMethod
virtual QgsAuthMethod * createAuthMethod() const
Class factory to return a pointer to a newly created QgsDataProvider object.
Definition: qgsauthmethodmetadata.cpp:39
QgsAuthMethodMetadata::library
QString library() const
Returns the library file name.
Definition: qgsauthmethodmetadata.cpp:34
QgsAuthMethodMetadata::key
QString key() const
Returns the unique key associated with the method.
Definition: qgsauthmethodmetadata.cpp:24
QgsAuthMethodMetadata::description
QString description() const
Returns descriptive text for the method.
Definition: qgsauthmethodmetadata.cpp:29