summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0070/stanza.py
blob: ada390d4489d18f07d3492d3fa3e1ef8c17d237b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
    Slixmpp: The Slick XMPP Library
    Copyright (C) 2015 Emmanuel Gil Peyrot
    This file is part of Slixmpp.

    See the file LICENSE for copying permission.
"""

from slixmpp.xmlstream import ElementBase


class Confirm(ElementBase):

    name = 'confirm'
    namespace = 'http://jabber.org/protocol/http-auth'
    plugin_attrib = 'confirm'
    interfaces = {'id', 'url', 'method'}