28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
*/
@interface XMPPEXTERNALAuth: XMPPAuthenticator
/**
* \brief Creates a new autoreleased XMPPEXTERNALAuth.
*
* \return A new autoreleased XMPPEXTERNALAuth
*/
+ EXTERNALAuth;
/**
* \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
|
|
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
*/
@interface XMPPEXTERNALAuth: XMPPAuthenticator
/**
* \brief Creates a new autoreleased XMPPEXTERNALAuth.
*
* \return A new autoreleased XMPPEXTERNALAuth
*/
+ (instancetype)EXTERNALAuth;
/**
* \brief Creates a new autoreleased XMPPEXTERNALAuth with an authzid.
*
* \param authzid The authzid to get authorization for
* \return A new autoreleased XMPPEXTERNALAuth
*/
+ (instancetype)EXTERNALAuthWithAuthzid: (OFString*)authzid;
@end
|