nextcloud-desktop/src/libsync/creds/dummycredentials.cpp
Christian Kamm a5ace5e71d Account/Credentials: Have identical lifetimes
The QNAM may continue to outlive both.

Rename Credentials::getQNAM() to createQNAM() while we're at it - it's
used to make a new QNAM that will subsequently be owned by the Account
object.

See d01065b9a1 for rationale.

Relates to
d40c56eda5
147cf798a6
2017-07-08 13:07:13 +02:00

62 lines
1.2 KiB
C++

/*
* Copyright (C) by Krzesimir Nowak <krzesimir@endocode.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#include "creds/dummycredentials.h"
#include "accessmanager.h"
namespace OCC {
QString DummyCredentials::authType() const
{
return QString::fromLatin1("dummy");
}
QString DummyCredentials::user() const
{
return _user;
}
QNetworkAccessManager *DummyCredentials::createQNAM() const
{
return new AccessManager;
}
bool DummyCredentials::ready() const
{
return true;
}
bool DummyCredentials::stillValid(QNetworkReply *reply)
{
Q_UNUSED(reply)
return true;
}
void DummyCredentials::fetchFromKeychain()
{
_wasFetched = true;
Q_EMIT(fetched());
}
void DummyCredentials::askFromUser()
{
Q_EMIT(asked());
}
void DummyCredentials::persist()
{
}
} // namespace OCC