Rename to slixmpp
[slixmpp.git] / slixmpp / features / feature_bind / stanza.py
blobb9ecd97c101ebe1b4980852ca2b4394b6b2708b9
1 """
2 Slixmpp: The Slick XMPP Library
3 Copyright (C) 2011 Nathanael C. Fritz
4 This file is part of Slixmpp.
6 See the file LICENSE for copying permission.
7 """
9 from slixmpp.xmlstream import ElementBase
12 class Bind(ElementBase):
14 """
15 """
17 name = 'bind'
18 namespace = 'urn:ietf:params:xml:ns:xmpp-bind'
19 interfaces = set(('resource', 'jid'))
20 sub_interfaces = interfaces
21 plugin_attrib = 'bind'