Toggle Light / Dark / Auto color theme
Toggle table of contents sidebar
Source code for slixmpp.plugins.xep_0009.stanza.RPC
# Slixmpp: The Slick XMPP Library
# Copyright (C) 2011 Nathanael C. Fritz, Dann Martens (TOMOTON).
# This file is part of Slixmpp.
# See the file LICENSE for copying permission.
from slixmpp.xmlstream.stanzabase import ElementBase
from xml.etree import ElementTree as ET
[docs]
class RPCQuery ( ElementBase ):
name = 'query'
namespace = 'jabber:iq:rpc'
plugin_attrib = 'rpc_query'
interfaces = {}
subinterfaces = {}
plugin_attrib_map = {}
plugin_tag_map = {}
[docs]
class MethodCall ( ElementBase ):
name = 'methodCall'
namespace = 'jabber:iq:rpc'
plugin_attrib = 'method_call'
interfaces = { 'method_name' , 'params' }
subinterfaces = {}
plugin_attrib_map = {}
plugin_tag_map = {}
[docs]
def get_method_name ( self ):
return self . _get_sub_text ( 'methodName' )
[docs]
def set_method_name ( self , value ):
return self . _set_sub_text ( 'methodName' , value )
[docs]
def get_params ( self ):
return self . xml . find ( '{ %s }params' % self . namespace )
[docs]
def set_params ( self , params ):
self . append ( params )
[docs]
class MethodResponse ( ElementBase ):
name = 'methodResponse'
namespace = 'jabber:iq:rpc'
plugin_attrib = 'method_response'
interfaces = { 'params' , 'fault' }
subinterfaces = {}
plugin_attrib_map = {}
plugin_tag_map = {}
[docs]
def get_params ( self ):
return self . xml . find ( '{ %s }params' % self . namespace )
[docs]
def set_params ( self , params ):
self . append ( params )
[docs]
def get_fault ( self ):
return self . xml . find ( '{ %s }fault' % self . namespace )
[docs]
def set_fault ( self , fault ):
self . append ( fault )