This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-08-04 13:54:30 +02:00

18 lines
446 B
C++

#include "awsauthenticator.h"
#include "loggingcategories.h"
AwsAuthenticator::AwsAuthenticator(QObject *parent) :
Authenticator(parent)
{
}
AuthenticationReply *AwsAuthenticator::authenticate(const QUuid &clientId, const QString &token)
{
qCDebug(dcAuthenticator()) << "Start authenticating" << clientId << "using token" << token;
AuthenticationReply *reply = new AuthenticationReply(clientId, token, this);
return reply;
}