Modifier and Type | Field and Description |
---|---|
private SftpClient |
SftpOutputStreamWithChannel.client |
private SftpClient |
SftpInputStreamWithChannel.client |
private SftpClient |
SftpDirEntryIterator.client |
private SftpClient |
StfpIterableDirHandle.client |
private SftpClient |
SftpIterableDirEntry.client |
private SftpClient |
SftpRemotePathChannel.sftp |
Modifier and Type | Method and Description |
---|---|
default SftpClient |
SftpClientFactory.createSftpClient(ClientSession session)
Create an SFTP client from this session.
|
default SftpClient |
SftpClientFactory.createSftpClient(ClientSession session,
int version)
Creates an SFTP client using the specified version
|
SftpClient |
SftpClientFactory.createSftpClient(ClientSession session,
SftpVersionSelector selector) |
SftpClient |
SftpOutputStreamWithChannel.getClient()
The client instance
|
SftpClient |
SftpInputStreamWithChannel.getClient()
The client instance
|
SftpClient |
SftpDirEntryIterator.getClient()
The client instance
|
SftpClient |
StfpIterableDirHandle.getClient()
The client instance
|
SftpClient |
SftpIterableDirEntry.getClient()
The client instance
|
default SftpClient |
SimpleSftpClient.sftpLogin(java.net.InetAddress host,
int port,
java.lang.String username,
java.security.KeyPair identity)
Creates an SFTP session using the provided credentials
|
default SftpClient |
SimpleSftpClient.sftpLogin(java.net.InetAddress host,
int port,
java.lang.String username,
java.lang.String password)
Creates an SFTP session using the provided credentials
|
default SftpClient |
SimpleSftpClient.sftpLogin(java.net.InetAddress host,
java.lang.String username,
java.security.KeyPair identity)
Creates an SFTP session on the default port and logs in using the provided credentials
|
default SftpClient |
SimpleSftpClient.sftpLogin(java.net.InetAddress host,
java.lang.String username,
java.lang.String password)
Creates an SFTP session on the default port and logs in using the provided credentials
|
SftpClient |
SimpleSftpClient.sftpLogin(java.net.SocketAddress target,
java.lang.String username,
java.security.KeyPair identity)
Creates an SFTP session using the provided credentials
|
SftpClient |
SimpleSftpClient.sftpLogin(java.net.SocketAddress target,
java.lang.String username,
java.lang.String password)
Creates an SFTP session using the provided credentials
|
default SftpClient |
SimpleSftpClient.sftpLogin(java.lang.String host,
int port,
java.lang.String username,
java.security.KeyPair identity)
Creates an SFTP session using the provided credentials
|
default SftpClient |
SimpleSftpClient.sftpLogin(java.lang.String host,
int port,
java.lang.String username,
java.lang.String password)
Creates an SFTP session using the provided credentials
|
default SftpClient |
SimpleSftpClient.sftpLogin(java.lang.String host,
java.lang.String username,
java.security.KeyPair identity)
Creates an SFTP session on the default port and logs in using the provided credentials
|
default SftpClient |
SimpleSftpClient.sftpLogin(java.lang.String host,
java.lang.String username,
java.lang.String password)
Creates an SFTP session on the default port and logs in using the provided credentials
|
Constructor and Description |
---|
SftpDirEntryIterator(SftpClient client,
SftpClient.Handle dirHandle) |
SftpDirEntryIterator(SftpClient client,
java.lang.String path) |
SftpDirEntryIterator(SftpClient client,
java.lang.String path,
SftpClient.Handle dirHandle,
boolean closeOnFinished) |
SftpInputStreamWithChannel(SftpClient client,
int bufferSize,
java.lang.String path,
java.util.Collection<SftpClient.OpenMode> mode) |
SftpIterableDirEntry(SftpClient client,
java.lang.String path) |
SftpOutputStreamWithChannel(SftpClient client,
int bufferSize,
java.lang.String path,
java.util.Collection<SftpClient.OpenMode> mode) |
SftpRemotePathChannel(java.lang.String path,
SftpClient sftp,
boolean closeOnExit,
java.util.Collection<SftpClient.OpenMode> modes) |
StfpIterableDirHandle(SftpClient client,
SftpClient.Handle handle) |
Modifier and Type | Method and Description |
---|---|
SftpClient |
SftpClientExtension.getClient() |
Modifier and Type | Method and Description |
---|---|
default SftpClientExtension |
SftpClientExtensionFactory.create(SftpClient client,
RawSftpClient raw) |
SftpClientExtension |
SftpClientExtensionFactory.create(SftpClient client,
RawSftpClient raw,
java.util.Map<java.lang.String,byte[]> extensions,
java.util.Map<java.lang.String,?> parsed) |
Modifier and Type | Field and Description |
---|---|
private SftpClient |
AbstractSftpClientExtension.client |
Modifier and Type | Method and Description |
---|---|
SftpClient |
AbstractSftpClientExtension.getClient() |
Constructor and Description |
---|
AbstractCheckFileExtension(java.lang.String name,
SftpClient client,
RawSftpClient raw,
java.util.Collection<java.lang.String> extras) |
AbstractMD5HashExtension(java.lang.String name,
SftpClient client,
RawSftpClient raw,
java.util.Collection<java.lang.String> extras) |
AbstractSftpClientExtension(java.lang.String name,
SftpClient client,
RawSftpClient raw,
boolean supported) |
AbstractSftpClientExtension(java.lang.String name,
SftpClient client,
RawSftpClient raw,
java.util.Collection<java.lang.String> extras) |
AbstractSftpClientExtension(java.lang.String name,
SftpClient client,
RawSftpClient raw,
java.util.Map<java.lang.String,byte[]> extensions) |
CheckFileHandleExtensionImpl(SftpClient client,
RawSftpClient raw,
java.util.Collection<java.lang.String> extras) |
CheckFileNameExtensionImpl(SftpClient client,
RawSftpClient raw,
java.util.Collection<java.lang.String> extras) |
CopyDataExtensionImpl(SftpClient client,
RawSftpClient raw,
java.util.Collection<java.lang.String> extra) |
CopyFileExtensionImpl(SftpClient client,
RawSftpClient raw,
java.util.Collection<java.lang.String> extra) |
MD5FileExtensionImpl(SftpClient client,
RawSftpClient raw,
java.util.Collection<java.lang.String> extra) |
MD5HandleExtensionImpl(SftpClient client,
RawSftpClient raw,
java.util.Collection<java.lang.String> extra) |
SpaceAvailableExtensionImpl(SftpClient client,
RawSftpClient raw,
java.util.Collection<java.lang.String> extra) |
Constructor and Description |
---|
AbstractOpenSSHStatCommandExtension(java.lang.String name,
SftpClient client,
RawSftpClient raw,
java.util.Map<java.lang.String,byte[]> extensions) |
OpenSSHFsyncExtensionImpl(SftpClient client,
RawSftpClient raw,
java.util.Map<java.lang.String,byte[]> extensions) |
OpenSSHStatHandleExtensionImpl(SftpClient client,
RawSftpClient raw,
java.util.Map<java.lang.String,byte[]> extensions) |
OpenSSHStatPathExtensionImpl(SftpClient client,
RawSftpClient raw,
java.util.Map<java.lang.String,byte[]> extensions) |
Modifier and Type | Class and Description |
---|---|
private class |
SftpFileSystem.Wrapper |
Modifier and Type | Field and Description |
---|---|
private SftpClient |
SftpFileSystem.Wrapper.delegate |
private SftpClient |
SftpDirectoryStream.sftp |
Modifier and Type | Field and Description |
---|---|
private java.util.Queue<SftpClient> |
SftpFileSystem.pool |
Modifier and Type | Method and Description |
---|---|
SftpClient |
SftpDirectoryStream.getClient()
Client instance used to access the remote directory
|
SftpClient |
SftpFileSystem.getClient() |
Constructor and Description |
---|
Wrapper(SftpClient delegate,
int readSize,
int writeSize) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractSftpClient |
class |
DefaultSftpClient |
Modifier and Type | Field and Description |
---|---|
private SftpClient |
DefaultCloseableHandle.client |
Modifier and Type | Method and Description |
---|---|
protected SftpClient |
SimpleSftpClientImpl.createSftpClient(ClientSession session) |
protected SftpClient |
SimpleSftpClientImpl.createSftpClient(ClientSession session,
SftpClient client) |
SftpClient |
DefaultSftpClientFactory.createSftpClient(ClientSession session,
SftpVersionSelector selector) |
protected SftpClient |
SimpleSftpClientImpl.createSftpClient(IOFunction<? super SimpleClient,? extends ClientSession> sessionProvider) |
SftpClient |
DefaultCloseableHandle.getSftpClient() |
SftpClient |
SimpleSftpClientImpl.sftpLogin(java.net.SocketAddress target,
java.lang.String username,
java.security.KeyPair identity) |
SftpClient |
SimpleSftpClientImpl.sftpLogin(java.net.SocketAddress target,
java.lang.String username,
java.lang.String password) |
Modifier and Type | Method and Description |
---|---|
protected SftpClient |
SimpleSftpClientImpl.createSftpClient(ClientSession session,
SftpClient client) |
Constructor and Description |
---|
DefaultCloseableHandle(SftpClient client,
java.lang.String path,
byte[] id) |