accounts-qt 1.16
auth-data.h
1/* vi: set et sw=4 ts=4 cino=t0,(0: */
2/*
3 * This file is part of libaccounts-qt
4 *
5 * Copyright (C) 2012-2016 Canonical Ltd.
6 *
7 * Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * version 2.1 as published by the Free Software Foundation.
12 *
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 */
27
28#ifndef ACCOUNTS_AUTH_DATA_H
29#define ACCOUNTS_AUTH_DATA_H
30
31#include "Accounts/accountscommon.h"
32
33#include <QString>
34#include <QVariantMap>
35
36extern "C"
37{
38 typedef struct _AgAuthData AgAuthData;
39}
40
44namespace Accounts
45{
46
47class AccountService;
48
49class ACCOUNTS_EXPORT AuthData
50{
51public:
52 AuthData(const AuthData &other);
53 virtual ~AuthData();
54
55 uint credentialsId() const;
56
57 QString method() const;
58
59 QString mechanism() const;
60
61 QVariantMap parameters() const;
62
63private:
64 // Don't include private data in docs: \cond
65 friend class AccountService;
66 AuthData(AgAuthData *authData);
67
68 AgAuthData *m_authData;
69 // \endcond
70};
71
72} // namespace
73
74#endif // ACCOUNTS_AUTH_DATA_H
Account settings for a specific service.
QString method() const
Get the authentication method which must be used when logging in with this account.
Definition auth-data.cpp:84
QVariantMap parameters() const
Get the dictionary of authentication parameters which must be used when logging in with this account.
uint credentialsId() const
Definition auth-data.cpp:74
QString mechanism() const
Get the authentication mechanism which must be used when logging in with this account.
Definition auth-data.cpp:94
AuthData(const AuthData &other)
Copy constructor.
Definition auth-data.cpp:48