File indexing completed on 2024-11-24 04:44:30

0001 /*
0002     This file is part of oxaccess.
0003 
0004     SPDX-FileCopyrightText: 2009 Tobias Koenig <tokoe@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-or-later
0007 */
0008 
0009 #pragma once
0010 
0011 #include <KJob>
0012 
0013 namespace OXA
0014 {
0015 class UserIdRequestJob : public KJob
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     explicit UserIdRequestJob(QObject *parent = nullptr);
0021 
0022     void start() override;
0023 
0024     [[nodiscard]] qlonglong userId() const;
0025 
0026 private:
0027     void davJobFinished(KJob *);
0028     qlonglong mUserId = -1;
0029 };
0030 }