24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
-
+
-
+
|
#import "XMPPAuthenticator.h"
/**
* \brief A class to authenticate using SASL EXTERNAL
*/
@interface XMPPEXTERNALAuth: XMPPAuthenticator
/**
* Creates a new autoreleased XMPPEXTERNALAuth.
* \brief Creates a new autoreleased XMPPEXTERNALAuth.
*
* \return A new autoreleased XMPPEXTERNALAuth
*/
+ EXTERNALAuth;
/**
* Creates a new autoreleased XMPPEXTERNALAuth with an authzid.
* \brief Creates a new autoreleased XMPPEXTERNALAuth with an authzid.
*
* \param authzid The authzid to get authorization for
* \return A new autoreleased XMPPEXTERNALAuth
*/
+ EXTERNALAuthWithAuthzid: (OFString*)authzid;
@end
|