KDAV

protocolinfo.h
1/*
2 SPDX-FileCopyrightText: 2019 Volker Krause <vkrause@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#ifndef KDAV_PROTOCOLINFO_H
8#define KDAV_PROTOCOLINFO_H
9
10#include "enums.h"
11#include "kdav_export.h"
12
13namespace KDAV
14{
15/** Information about a DAV protocol. */
16namespace ProtocolInfo
17{
18/**
19 * Returns whether the @p protocol dialect supports the MULTIGET command.
20 *
21 * If MULTIGET is supported, the content of all DAV resources
22 * can be fetched in Akonadi::ResourceBase::retrieveItems() already and
23 * there is no need to call Akonadi::ResourceBase::retrieveItem() for every single
24 * DAV resource.
25 */
26Q_REQUIRED_RESULT KDAV_EXPORT bool useMultiget(KDAV::Protocol protocol);
27
28/** Returns the principal home set of @p protocol. */
29Q_REQUIRED_RESULT KDAV_EXPORT QString principalHomeSet(KDAV::Protocol protocol);
30
31/** Returns the principal home set namespace of @p protocol. */
32Q_REQUIRED_RESULT KDAV_EXPORT QString principalHomeSetNS(KDAV::Protocol protocol);
33
34/**
35 * Returns the untranslated name of the given DAV @p protocol dialect.
36 */
37Q_REQUIRED_RESULT KDAV_EXPORT QString protocolName(KDAV::Protocol protocol);
38
39/**
40 * Returns the protocol matching the given name. This is the opposite of
41 * ProtocolInfo::protocolName().
42 */
43Q_REQUIRED_RESULT KDAV_EXPORT KDAV::Protocol protocolByName(const QString &name);
44
45/**
46 * Returns the mimetype that shall be used for contact DAV resources using @p protocol.
47 */
48Q_REQUIRED_RESULT KDAV_EXPORT QString contactsMimeType(KDAV::Protocol protocol);
49}
50
51}
52
53#endif // KDAV_PROTOCOLINFO_H
KDAV_EXPORT QString contactsMimeType(KDAV::Protocol protocol)
Returns the mimetype that shall be used for contact DAV resources using protocol.
KDAV_EXPORT KDAV::Protocol protocolByName(const QString &name)
Returns the protocol matching the given name.
KDAV_EXPORT QString principalHomeSetNS(KDAV::Protocol protocol)
Returns the principal home set namespace of protocol.
KDAV_EXPORT QString protocolName(KDAV::Protocol protocol)
Returns the untranslated name of the given DAV protocol dialect.
KDAV_EXPORT QString principalHomeSet(KDAV::Protocol protocol)
Returns the principal home set of protocol.
KDAV_EXPORT bool useMultiget(KDAV::Protocol protocol)
Returns whether the protocol dialect supports the MULTIGET command.
The KDAV namespace.
Protocol
Describes the DAV protocol dialect.
Definition enums.h:20
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 17 2024 11:48:53 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.