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

/external/smack/src/org/jivesoftware/smackx/bytestreams/
H A DBytestreamManager.java86 * @param targetJID the JID of the user a bytestream should be established
93 public BytestreamSession establishSession(String targetJID) throws XMPPException, IOException, argument
103 * @param targetJID the JID of the user a bytestream should be established
111 public BytestreamSession establishSession(String targetJID, String sessionID) argument
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
H A DSocks5Utils.java35 * @param targetJID JID of the target 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.java398 * @param targetJID the JID of the user a SOCKS5 Bytestream should be established
405 public Socks5BytestreamSession establishSession(String targetJID) throws XMPPException, argument
408 return establishSession(targetJID, sessionID);
415 * @param targetJID the JID of the user a SOCKS5 Bytestream should be established
423 public Socks5BytestreamSession establishSession(String targetJID, String sessionID) argument
428 if (!supportsSocks5(targetJID)) {
429 throw new XMPPException(targetJID + " doesn't support SOCKS5 Bytestream");
450 String digest = Socks5Utils.createDigest(sessionID, this.connection.getUser(), targetJID);
475 Bytestream initiation = createBytestreamInitiation(sessionID, targetJID, streamHosts);
491 this.connection, sessionID, targetJID);
524 supportsSocks5(String targetJID) argument
676 createBytestreamInitiation(String sessionID, String targetJID, List<StreamHost> streamHosts) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
H A DInBandBytestreamManager.java390 * @param targetJID the JID of the user an In-Band Bytestream should be established
395 public InBandBytestreamSession establishSession(String targetJID) throws XMPPException { argument
397 return establishSession(targetJID, sessionID);
404 * @param targetJID the JID of the user an In-Band Bytestream should be established
410 public InBandBytestreamSession establishSession(String targetJID, String sessionID) argument
413 byteStreamRequest.setTo(targetJID);
419 this.connection, byteStreamRequest, targetJID);

Completed in 119 milliseconds