214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
{
if (rosterRequested)
@throw [OFInvalidArgumentException
exceptionWithClass: [self class]];
dataStorage = dataStorage_;
}
- (id <XMPPStorage>)dataStorage
{
return dataStorage;
}
- (void)XMPP_updateRosterItem: (XMPPRosterItem*)rosterItem
|
>
>
>
>
>
|
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
{
if (rosterRequested)
@throw [OFInvalidArgumentException
exceptionWithClass: [self class]];
dataStorage = dataStorage_;
}
- (XMPPConnection*)connection
{
return connection;
}
- (id <XMPPStorage>)dataStorage
{
return dataStorage;
}
- (void)XMPP_updateRosterItem: (XMPPRosterItem*)rosterItem
|