Searched refs:initiatorJID (Results 1 - 4 of 4) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/bytestreams/
H A DBytestreamManager.java62 * @param initiatorJID the JID of the user that wants to establish a bytestream
64 public void addIncomingBytestreamListener(BytestreamListener listener, String initiatorJID); argument
69 * @param initiatorJID the JID of the user the listener should be removed
71 public void removeIncomingBytestreamListener(String initiatorJID); argument
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
H A DSocks5Utils.java34 * @param initiatorJID JID of the initiator of a SOCKS5 Bytestream
38 public static String createDigest(String sessionID, String initiatorJID, String targetJID) { argument
40 b.append(sessionID).append(initiatorJID).append(targetJID);
H A DSocks5BytestreamManager.java248 * @param initiatorJID the JID of the user that wants to establish a SOCKS5 Bytestream
250 public void addIncomingBytestreamListener(BytestreamListener listener, String initiatorJID) { argument
251 this.userListeners.put(initiatorJID, listener);
257 * @param initiatorJID the JID of the user the listener should be removed
259 public void removeIncomingBytestreamListener(String initiatorJID) { argument
260 this.userListeners.remove(initiatorJID);
/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
H A DInBandBytestreamManager.java261 * @param initiatorJID the JID of the user that wants to establish an In-Band Bytestream
263 public void addIncomingBytestreamListener(BytestreamListener listener, String initiatorJID) { argument
264 this.userListeners.put(initiatorJID, listener);
270 * @param initiatorJID the JID of the user the listener should be removed
272 public void removeIncomingBytestreamListener(String initiatorJID) { argument
273 this.userListeners.remove(initiatorJID);

Completed in 662 milliseconds