Akonadi::Server::CollectionCopyHandler
#include <collectioncopyhandler.h>

Public Member Functions | |
| CollectionCopyHandler (AkonadiServer &akonadi) | |
| bool | parseStream () override |
Public Member Functions inherited from Akonadi::Server::ItemCopyHandler | |
| ItemCopyHandler (AkonadiServer &akonadi) | |
| bool | parseStream () override |
Public Member Functions inherited from Akonadi::Server::Handler | |
| Handler (const Handler &)=delete | |
| Handler (Handler &&) noexcept=delete | |
| AkonadiServer & | akonadi () const |
| bool | checkScopeConstraints (const Scope &scope, const QList< Scope::SelectionScope > &permittedScopes) const |
| Protocol::CommandPtr | command () const |
| Connection * | connection () const |
| bool | failureResponse (const char *response) |
| bool | failureResponse (const QByteArray &response) |
| bool | failureResponse (const QString &response) |
| Handler & | operator= (const Handler &)=delete |
| Handler & | operator= (Handler &&) noexcept=delete |
| template<typename T> | |
| void | sendResponse () |
| template<typename T> | |
| void | sendResponse (T &&response) |
| void | setCommand (const Protocol::CommandPtr &cmd) |
| void | setConnection (Connection *connection) |
| void | setTag (quint64 tag) |
| DataStore * | storageBackend () const |
| template<typename T> | |
| bool | successResponse () |
| template<typename T> | |
| bool | successResponse (T &&response) |
| quint64 | tag () const |
Additional Inherited Members | |
Static Public Member Functions inherited from Akonadi::Server::Handler | |
| static std::unique_ptr< Handler > | findHandlerForCommandAlwaysAllowed (Protocol::Command::Type cmd, AkonadiServer &akonadi) |
| static std::unique_ptr< Handler > | findHandlerForCommandAuthenticated (Protocol::Command::Type cmd, AkonadiServer &akonadi) |
| static std::unique_ptr< Handler > | findHandlerForCommandNonAuthenticated (Protocol::Command::Type cmd, AkonadiServer &akonadi) |
Protected Member Functions inherited from Akonadi::Server::ItemCopyHandler | |
| bool | copyItem (const PimItem &item, const Collection &target) |
| void | processItems (const QList< qint64 > &ids) |
Protected Member Functions inherited from Akonadi::Server::Handler | |
| Handler (AkonadiServer &akonadi) | |
Protected Attributes inherited from Akonadi::Server::Handler | |
| Protocol::CommandPtr | m_command |
Detailed Description
Handler for the CollectionCopyHandler command.
This command is used to copy a single collection into another collection, including all sub-collections and their content.
The copied items differ in the following points from the originals:
- new unique id
- empty remote id
- possible located in a different collection (and thus resource)
The copied collections differ in the following points from the originals:
- new unique id
- empty remote id
- owning resource is the same as the one of the target collection
Definition at line 34 of file collectioncopyhandler.h.
Constructor & Destructor Documentation
◆ CollectionCopyHandler()
| CollectionCopyHandler::CollectionCopyHandler | ( | AkonadiServer & | akonadi | ) |
Definition at line 24 of file collectioncopyhandler.cpp.
Member Function Documentation
◆ parseStream()
|
overridevirtual |
Parse and handle the IMAP message using the streaming parser.
The implementation MUST leave the trailing newline character(s) in the stream!
- Returns
- true if parsed successfully, false in case of parse failure
Implements Akonadi::Server::Handler.
Definition at line 75 of file collectioncopyhandler.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri May 2 2025 11:53:10 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.
Public Member Functions inherited from