MCPcopy Create free account
hub / github.com/annmuor/jnode / XMPPClient

Method XMPPClient

jnode-xmpp-module/src/org/jnode/xmpp/XMPPClient.java:55–63  ·  view source on GitHub ↗
(Properties properties)

Source from the content-addressed store, hash-verified

53 private HashMap<Chat, ChatAttributes> chatMap;
54
55 public XMPPClient(Properties properties) {
56 server = properties.getProperty(XMPP_SERVER);
57 uid = properties.getProperty(XMPP_UID);
58 pwd = properties.getProperty(XMPP_PWD);
59 password = properties.getProperty(MASTER_PASSWORD);
60 masters = Arrays.asList(properties.getProperty(MASTERS, "")
61 .replaceAll("\\s", "").split(","));
62 chatMap = new HashMap<>();
63 }
64
65 /**
66 * Проверка соединения

Callers

nothing calls this directly

Calls 2

getPropertyMethod · 0.80
replaceAllMethod · 0.80

Tested by

no test coverage detected