class documentation
class ConnectComponentAuthenticator(xmlstream.ConnectAuthenticator): (source)
Constructor: ConnectComponentAuthenticator(componentjid, password)
Authenticator to permit an XmlStream to authenticate against a Jabber server as an external component (where the Authenticator is initiating the stream).
| Method | __init__ |
No summary |
| Method | associate |
Called by the XmlStreamFactory when a connection has been made to the requested peer, and an XmlStream object has been instantiated. |
| Instance Variable | password |
Undocumented |
Inherited from ConnectAuthenticator:
| Method | connection |
Called by the XmlStream when the underlying socket connection is in place. |
| Method | initialize |
Perform stream initialization procedures. |
| Method | stream |
Called by the XmlStream when the stream has started. |
| Class Variable | namespace |
Undocumented |
| Instance Variable | other |
Undocumented |
Inherited from Authenticator (via ConnectAuthenticator):
| Instance Variable | xmlstream |
The XmlStream that needs authentication |
| Parameters | |
| componentjid:str | Jabber ID that this component wishes to bind to. |
| password:str | Password/secret this component uses to authenticate. |
Called by the XmlStreamFactory when a connection has been made to the requested peer, and an XmlStream object has been instantiated.
The default implementation just saves a handle to the new XmlStream.
| Parameters | |
| xs | Undocumented |
xmlstream:XmlStream | The XmlStream that will be passing events to this Authenticator. |