""" SleekXMPP: The Sleek XMPP Library Implementation of HTTP over XMPP transport http://xmpp.org/extensions/xep-0332.html Copyright (C) 2015 Riptide IO, sangeeth@riptideio.com This file is part of SleekXMPP. See the file LICENSE for copying permission. """ from sleekxmpp.xmlstream import ElementBase from sleekxmpp.plugins.xep_0332.stanza import NAMESPACE class Response(ElementBase): """ When the HTTP Server responds, it does so by sending an `iq` stanza response (type=`result`) back to the client containing the `resp` element. Since response are asynchronous, and since multiple requests may be active at the same time, responses may be returned in a different order than the in which the original requests were made. Examples:
Fri, 03 May 2013 16:39:54GMT-4
Clayster
text/turtle
...
Close
...
""" name = 'response' namespace = NAMESPACE interfaces = set(('statusCode', 'statusMessage', 'version')) plugin_attrib = 'resp'