24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#import "XMPPStanza.h"
/**
* \brief A class describing an IQ stanza.
*/
@interface XMPPIQ: XMPPStanza
/**
* Creates a new XMPPIQ with the specified type and id.
*
* \param type The value for the stanza's type attribute
* \param ID The value for the stanza's id attribute
* \return A new autoreleased XMPPIQ
*/
+ IQWithType: (OFString*)type
ID: (OFString*)ID;
/**
* Initializes an already allocated XMPPIQ with the specified type and id
*
* \param type The value for the stanza's type attribute
* \param ID The value for the stanza's id attribute
* \return An initialized XMPPIQ
*/
- initWithType: (OFString*)type
ID: (OFString*)ID;
/**
* Generates a result IQ for the receiving object
*
* \return A new autoreleased XMPPIQ
*/
- (XMPPIQ*)resultIQ;
/**
* Generates a error IQ for the receiving object
*
* \param type A error type as defined by RFC 6120
* \param condition A error condition as defined by RFC 6120
* \param text A descriptive text
* \return A new autoreleased XMPPIQ
*/
- (XMPPIQ*)errorIQWithType: (OFString*)type
condition: (OFString*)condition
text: (OFString*)text;
/**
* Generates a error IQ for the receiving object
*
* \param type A error type as defined by RFC 6120
* \param condition A defined conditions from RFC 6120
* \return A new autoreleased XMPPIQ
*/
- (XMPPIQ*)errorIQWithType: (OFString*)type
condition: (OFString*)condition;
@end
|
|
|
>
|
|
|
|
|
|
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#import "XMPPStanza.h"
/**
* \brief A class describing an IQ stanza.
*/
@interface XMPPIQ: XMPPStanza
/**
* \brief Creates a new XMPPIQ with the specified type and ID.
*
* \param type The value for the stanza's type attribute
* \param ID The value for the stanza's id attribute
* \return A new autoreleased XMPPIQ
*/
+ IQWithType: (OFString*)type
ID: (OFString*)ID;
/**
* \brief Initializes an already allocated XMPPIQ with the specified type and
* ID.
*
* \param type The value for the stanza's type attribute
* \param ID The value for the stanza's id attribute
* \return An initialized XMPPIQ
*/
- initWithType: (OFString*)type
ID: (OFString*)ID;
/**
* \brief Generates a result IQ for the receiving object.
*
* \return A new autoreleased XMPPIQ
*/
- (XMPPIQ*)resultIQ;
/**
* \brief Generates an error IQ for the receiving object.
*
* \param type An error type as defined by RFC 6120
* \param condition An error condition as defined by RFC 6120
* \param text A descriptive text
* \return A new autoreleased XMPPIQ
*/
- (XMPPIQ*)errorIQWithType: (OFString*)type
condition: (OFString*)condition
text: (OFString*)text;
/**
* \brief Generates an error IQ for the receiving object.
*
* \param type An error type as defined by RFC 6120
* \param condition A defined conditions from RFC 6120
* \return A new autoreleased XMPPIQ
*/
- (XMPPIQ*)errorIQWithType: (OFString*)type
condition: (OFString*)condition;
@end
|