#include <registrationhandler.h>
Public Member Functions | |
virtual | ~RegistrationHandler () |
virtual void | handleRegistrationFields (const JID &from, int fields, std::string instructions)=0 |
virtual void | handleAlreadyRegistered (const JID &from)=0 |
virtual void | handleRegistrationResult (const JID &from, RegistrationResult regResult)=0 |
virtual void | handleDataForm (const JID &from, const DataForm &form)=0 |
virtual void | handleOOB (const JID &from, const OOB &oob)=0 |
Derived classes can be registered as RegistrationHandlers with an Registration object. Incoming results for operations initiated through the Registration object are forwarded to this handler.
Definition at line 77 of file registrationhandler.h.
virtual ~RegistrationHandler | ( | ) | [inline, virtual] |
Virtual Destructor.
Definition at line 83 of file registrationhandler.h.
virtual void handleRegistrationFields | ( | const JID & | from, | |
int | fields, | |||
std::string | instructions | |||
) | [pure virtual] |
Reimplement this function to receive results of the Registration::fetchRegistrationFields() function.
from | The server or service the registration fields came from. | |
fields | The OR'ed fields the server requires. From Registration::fieldEnum. | |
instructions | Any additional information the server sends along. |
virtual void handleAlreadyRegistered | ( | const JID & | from | ) | [pure virtual] |
This function is called if Registration::createAccount() was called on an authenticated stream and the server lets us know about this.
virtual void handleRegistrationResult | ( | const JID & | from, | |
RegistrationResult | regResult | |||
) | [pure virtual] |
This funtion is called to notify about the result of an operation.
from | The server or service the result came from. | |
regResult | The result of the last operation. |
This function is called additionally to handleRegistrationFields() if the server supplied a data form together with legacy registration fields.
from | The server or service the data form came from. | |
form | The DataForm containing registration information. |
This function is called if the server does not offer in-band registration but wants to refer the user to an external URL.
from | The server or service the referal came from. | |
oob | The OOB object describing the external URL. |