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 
key() const24 QString QgsAuthMethodMetadata::key() const
25 {
26   return mKey;
27 }
28 
description() const29 QString QgsAuthMethodMetadata::description() const
30 {
31   return mDescription;
32 }
33 
library() const34 QString QgsAuthMethodMetadata::library() const
35 {
36   return mLibrary;
37 }
38 
createAuthMethod() const39 QgsAuthMethod *QgsAuthMethodMetadata::createAuthMethod() const
40 {
41   return nullptr;
42 }
43 
44 
45