mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-02 14:55:58 +01:00
21be8c55ee
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/branches/smack_3_3_0@13560 b35dd754-fafc-0310-a699-88a17e54d16e
27 lines
925 B
Java
27 lines
925 B
Java
package org.jivesoftware.smack.util;
|
|
|
|
import org.jivesoftware.smack.Connection;
|
|
import org.jivesoftware.smack.Roster;
|
|
import org.jivesoftware.smack.XMPPException;
|
|
|
|
public class ConnectionUtils {
|
|
|
|
public static void becomeFriends(Connection con0, Connection con1) throws XMPPException {
|
|
Roster r0 = con0.getRoster();
|
|
Roster r1 = con1.getRoster();
|
|
r0.setSubscriptionMode(Roster.SubscriptionMode.accept_all);
|
|
r1.setSubscriptionMode(Roster.SubscriptionMode.accept_all);
|
|
r0.createEntry(con1.getUser(), "u2", null);
|
|
r1.createEntry(con0.getUser(), "u1", null);
|
|
}
|
|
|
|
public static void letsAllBeFriends(Connection[] connections) throws XMPPException {
|
|
for (Connection c1 : connections) {
|
|
for (Connection c2 : connections) {
|
|
if (c1 == c2)
|
|
continue;
|
|
becomeFriends(c1, c2);
|
|
}
|
|
}
|
|
}
|
|
}
|