Source code for slixmpp.plugins.xep_0334.stanza """ slixmpp: The Slick XMPP Library Implementation of Message Processing Hints http://xmpp.org/extensions/xep-0334.html This file is part of slixmpp. See the file LICENSE for copying permission. """ from slixmpp.xmlstream import ElementBase [docs] class Store(ElementBase): name = 'store' plugin_attrib = 'store' namespace = 'urn:xmpp:hints' [docs] class NoPermanentStore(ElementBase): name = 'no-permanent-store' plugin_attrib = 'no-permanent-store' namespace = 'urn:xmpp:hints' [docs] class NoStore(ElementBase): name = 'no-store' plugin_attrib = 'no-store' namespace = 'urn:xmpp:hints' [docs] class NoCopy(ElementBase): name = 'no-copy' plugin_attrib = 'no-copy' namespace = 'urn:xmpp:hints'