blob: 2c29c320fc4a74c85c149ab9c65910f2fb797384 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using Gee;
using Xmpp.Core;
namespace Xmpp.Xep.ServiceDiscovery {
public class ItemsResult {
public Iq.Stanza iq { get; private set; }
public ArrayList<Item> items {
owned get {
ArrayList<Item> ret = new ArrayList<Item>();
foreach (StanzaNode feature_node in iq.stanza.get_subnode("query", NS_URI_ITEMS).get_subnodes("identity", NS_URI_INFO)) {
ret.add(new Item(feature_node.get_attribute("jid", NS_URI_ITEMS),
feature_node.get_attribute("name", NS_URI_ITEMS),
feature_node.get_attribute("node", NS_URI_ITEMS)));
}
return ret;
}
}
public ItemsResult.from_iq(Iq.Stanza iq) {
this.iq = iq;
}
}
}
|