Package | org.igniterealtime.xiff.auth |
Class | public class SASLAuth |
Subclasses | Anonymous, DigestMD5, External, Plain, XFacebookPlatform |
See also
Property | Defined by | ||
---|---|---|---|
request : XML [read-only]
The XML for the authentication request.
| SASLAuth |
Property | Defined by | ||
---|---|---|---|
req : XML
The XML of the authentication request.
| SASLAuth | ||
response : XML
The XML of the challenge response.
| SASLAuth | ||
stage : int
The current response stage.
| SASLAuth |
Method | Defined by | ||
---|---|---|---|
SASLAuth()
| SASLAuth | ||
handleChallenge(stage:int, challenge:XML):XML
Called when a challenge to this authentication is received.
| SASLAuth | ||
handleResponse(stage:int, response:XML):Object
Called when a response to this authentication is received.
| SASLAuth |
req | property |
protected var req:XML
The XML of the authentication request.
request | property |
request:XML
[read-only]The XML for the authentication request.
Implementation public function get request():XML
response | property |
protected var response:XML
The XML of the challenge response.
stage | property |
protected var stage:int
The current response stage.
SASLAuth | () | constructor |
public function SASLAuth()
handleChallenge | () | method |
public function handleChallenge(stage:int, challenge:XML):XML
Called when a challenge to this authentication is received.
Parametersstage:int — The current stage in the authentication process.
|
|
challenge:XML — The XML of the actual authentication challenge.
|
XML — The XML response to the challenge.
|
handleResponse | () | method |
public function handleResponse(stage:int, response:XML):Object
Called when a response to this authentication is received.
Parametersstage:int — The current stage in the authentication process.
|
|
response:XML — The XML of the actual authentication response.
|
Object — An object specifying the current state of the authentication.
|