summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0070/stanza.py
blob: 224616edb705acfefbe86c83251df1d33d549bbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

# 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'}