(Properties properties)
| 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 | * Проверка соединения |
nothing calls this directly
no test coverage detected