KIMAP2

deleteacljob.cpp
1 /*
2  Copyright (c) 2009 Andras Mantia <[email protected]>
3 
4  This library is free software; you can redistribute it and/or modify it
5  under the terms of the GNU Library General Public License as published by
6  the Free Software Foundation; either version 2 of the License, or (at your
7  option) any later version.
8 
9  This library is distributed in the hope that it will be useful, but WITHOUT
10  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12  License for more details.
13 
14  You should have received a copy of the GNU Library General Public License
15  along with this library; see the file COPYING.LIB. If not, write to the
16  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  02110-1301, USA.
18 */
19 
20 #include "deleteacljob.h"
21 
22 #include "acljobbase_p.h"
23 #include "message_p.h"
24 #include "session_p.h"
25 #include "rfccodecs.h"
26 
27 namespace KIMAP2
28 {
29 class DeleteAclJobPrivate : public AclJobBasePrivate
30 {
31 public:
32  DeleteAclJobPrivate(Session *session, const QString &name) : AclJobBasePrivate(session, name) {}
33  ~DeleteAclJobPrivate() { }
34 };
35 }
36 
37 using namespace KIMAP2;
38 
39 DeleteAclJob::DeleteAclJob(Session *session)
40  : AclJobBase(session)
41 {
43  d->m_name = "DeleteAclJob";
44 }
45 
46 DeleteAclJob::~DeleteAclJob()
47 {
48 }
49 
50 void DeleteAclJob::doStart()
51 {
53 
54  d->sendCommand("DELETEACL", '\"' + KIMAP2::encodeImapFolderName(d->mailBox.toUtf8()) + "\" \"" + d->id);
55 }
56 
57 void DeleteAclJob::setIdentifier(const QByteArray &identifier)
58 {
60  d->setIdentifier(identifier);
61 }
62 
64 {
66  return d->identifier();
67 }
Base class for jobs that operate on mailbox ACLs.
Definition: acljobbase.h:44
Removes an identifier from the ACL of a mailbox.
Definition: deleteacljob.h:48
void setIdentifier(const QByteArray &identifier)
Sets the identifier to remove.
QString name(StandardShortcut id)
Provides handlers for various RFC/MIME encodings.
Q_D(Todo)
QByteArray identifier()
The identifier that will be removed.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Tue Dec 5 2023 04:05:34 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.