Libkdav2

davitemcreatejob.h
1/*
2 Copyright (c) 2010 Tobias Koenig <tokoe@kde.org>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17*/
18
19#ifndef KDAV2_DAVITEMCREATEJOB_H
20#define KDAV2_DAVITEMCREATEJOB_H
21
22#include "kpimkdav2_export.h"
23
24#include "davitem.h"
25#include "davjobbase.h"
26#include "davurl.h"
27
28namespace KDAV2
29{
30
31/**
32 * @short A job to create a DAV item on the DAV server.
33 */
34class KPIMKDAV2_EXPORT DavItemCreateJob : public DavJobBase
35{
36 Q_OBJECT
37
38public:
39 /**
40 * Creates a new dav item create job.
41 *
42 * @param item The item that shall be created.
43 * @param parent The parent object.
44 */
45 DavItemCreateJob(const DavItem &item, QObject *parent = nullptr);
46
47 /**
48 * Starts the job.
49 */
50 void start() Q_DECL_OVERRIDE;
51
52 /**
53 * Returns the created DAV item including the correct identifier url
54 * and current etag information.
55 */
56 DavItem item() const;
57
58 QUrl itemUrl() const;
59
60private Q_SLOTS:
61 void davJobFinished(KJob *);
62 void itemRefreshed(KJob *);
63
64private:
65 DavItem mItem;
66};
67
68}
69
70#endif
A job to create a DAV item on the DAV server.
A helper class to store information about DAV resources.
Definition davitem.h:52
base class for the jobs used by the resource.
Definition davjobbase.h:38
Q_SCRIPTABLE Q_NOREPLY void start()
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:13:28 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.