blob: cbcccb959f5322b1c65ce334309855b2a3b11eac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* Copyright (c) 2013-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Swiften/Serializer/PayloadSerializers/PubSubOwnerPurgeSerializer.h>
#include <Swiften/Serializer/XML/XMLElement.h>
using namespace Swift;
PubSubOwnerPurgeSerializer::PubSubOwnerPurgeSerializer(PayloadSerializerCollection* /*serializers*/) {
}
PubSubOwnerPurgeSerializer::~PubSubOwnerPurgeSerializer() {
}
std::string PubSubOwnerPurgeSerializer::serializePayload(std::shared_ptr<PubSubOwnerPurge> payload) const {
if (!payload) {
return "";
}
XMLElement element("purge", "http://jabber.org/protocol/pubsub#owner");
element.setAttribute("node", payload->getNode());
return element.serialize();
}
|