ObjXMPP  Diff

Differences From Artifact [bbf76b475f]:

To Artifact [0c0144bead]:


21
22
23
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
80
81
21
22
23
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
80


81
82
83

84
85
86
87
88
89







-
-
+
+






+
-
+
+

+
+
-
+
+

+
+
-
+
+


-
-
+
+

-
+



-
-
+
+

-
-
+
+



-
-
+
+

-
-
+
+



-
-
+
+

-
+



-
-
+
+

-
+





 * POSSIBILITY OF SUCH DAMAGE.
 */

#import <ObjFW/ObjFW.h>

OF_ASSUME_NONNULL_BEGIN

/**
 * \brief A class for easy handling of JIDs.
/*!
 * @brief A class for easy handling of JIDs.
 */
@interface XMPPJID: OFObject <OFCopying>
{
	OFString *_node, *_domain, *_resource;
}

/*!
/// \brief The JID's localpart
 * The JID's localpart.
 */
@property OF_NULLABLE_PROPERTY (nonatomic, copy) OFString *node;

/*!
/// \brief The JID's domainpart
 * The JID's domainpart.
 */
@property (nonatomic, copy) OFString *domain;

/*!
/// \brief The JID's resourcepart
 * The JID's resourcepart.
 */
@property OF_NULLABLE_PROPERTY (nonatomic, copy) OFString *resource;

/**
 * \brief Creates a new autoreleased XMPPJID.
/*!
 * @brief Creates a new autoreleased XMPPJID.
 *
 * \return A new autoreleased XMPPJID
 * @return A new autoreleased XMPPJID
 */
+ (instancetype)JID;

/**
 * \brief Creates a new autoreleased XMPPJID from a string.
/*!
 * @brief Creates a new autoreleased XMPPJID from a string.
 *
 * \param string The string to parse into a JID object
 * \return A new autoreleased XMPPJID
 * @param string The string to parse into a JID object
 * @return A new autoreleased XMPPJID
 */
+ (instancetype)JIDWithString: (OFString *)string;

/**
 * \brief Initializes an already allocated XMPPJID with a string.
/*!
 * @brief Initializes an already allocated XMPPJID with a string.
 *
 * \param string The string to parse into a JID object
 * \return A initialized XMPPJID
 * @param string The string to parse into a JID object
 * @return A initialized XMPPJID
 */
- initWithString: (OFString *)string;

/**
 * \brief Returns the bare JID.
/*!
 * @brief Returns the bare JID.
 *
 * \return An OFString containing the bare JID
 * @return An OFString containing the bare JID
 */
- (OFString *)bareJID;

/**
 * \brief Returns the full JID.
/*!
 * @brief Returns the full JID.
 *
 * \return An OFString containing the full JID
 * @return An OFString containing the full JID
 */
- (OFString *)fullJID;
@end

OF_ASSUME_NONNULL_END