Uses of Class
org.jivesoftware.smackx.filetransfer.StreamNegotiator

Packages that use StreamNegotiator
org.jivesoftware.smackx.filetransfer   
 

Uses of StreamNegotiator in org.jivesoftware.smackx.filetransfer
 

Subclasses of StreamNegotiator in org.jivesoftware.smackx.filetransfer
 class FaultTolerantNegotiator
          The fault tolerant negotiator takes two stream negotiators, the primary and the secondary negotiator.
 class IBBTransferNegotiator
          The In-Band Bytestream file transfer method, or IBB for short, transfers the file over the same XML Stream used by XMPP.
 class Socks5TransferNegotiator
          Negotiates a SOCKS5 Bytestream to be used for file transfers.
 

Methods in org.jivesoftware.smackx.filetransfer that return StreamNegotiator
 StreamNegotiator FileTransferNegotiator.negotiateOutgoingTransfer(java.lang.String userID, java.lang.String streamID, java.lang.String fileName, long size, java.lang.String desc, int responseTimeout)
          Send a request to another user to send them a file.
 StreamNegotiator FileTransferNegotiator.selectStreamNegotiator(FileTransferRequest request)
          Selects an appropriate stream negotiator after examining the incoming file transfer request.
 

Constructors in org.jivesoftware.smackx.filetransfer with parameters of type StreamNegotiator
FaultTolerantNegotiator(Connection connection, StreamNegotiator primary, StreamNegotiator secondary)