Package org.apache.sshd.scp
Class ScpModuleProperties
- java.lang.Object
-
- org.apache.sshd.scp.ScpModuleProperties
-
public final class ScpModuleProperties extends java.lang.Object
Configurable properties for sshd-scp.
-
-
Field Summary
Fields Modifier and Type Field Description static Property<java.nio.charset.Charset>
NAME_ENCODING_CHARSET
Used to indicate theCharset
(or its name) for encoding referenced files/folders names - extracted from the client channel session when 1st initialized.static Property<java.lang.Boolean>
PROP_AUTO_SYNC_FILE_ON_WRITE
Whether to synchronize written file data with underlying file-systemstatic Property<java.time.Duration>
SCP_EXEC_CHANNEL_EXIT_STATUS_TIMEOUT
Configurable value for controlling the wait timeout for waiting on a channel exit status' for an SCP command in milliseconds.static Property<java.time.Duration>
SCP_EXEC_CHANNEL_OPEN_TIMEOUT
Configurable value of the for controlling the wait timeout for opening a channel for an SCP command in milliseconds.
-
Constructor Summary
Constructors Modifier Constructor Description private
ScpModuleProperties()
-
-
-
Field Detail
-
SCP_EXEC_CHANNEL_OPEN_TIMEOUT
public static final Property<java.time.Duration> SCP_EXEC_CHANNEL_OPEN_TIMEOUT
Configurable value of the for controlling the wait timeout for opening a channel for an SCP command in milliseconds.
-
SCP_EXEC_CHANNEL_EXIT_STATUS_TIMEOUT
public static final Property<java.time.Duration> SCP_EXEC_CHANNEL_EXIT_STATUS_TIMEOUT
Configurable value for controlling the wait timeout for waiting on a channel exit status' for an SCP command in milliseconds. If non-positive, then no wait is performed and the command is assumed to have completed successfully.
-
PROP_AUTO_SYNC_FILE_ON_WRITE
public static final Property<java.lang.Boolean> PROP_AUTO_SYNC_FILE_ON_WRITE
Whether to synchronize written file data with underlying file-system
-
NAME_ENCODING_CHARSET
public static final Property<java.nio.charset.Charset> NAME_ENCODING_CHARSET
Used to indicate theCharset
(or its name) for encoding referenced files/folders names - extracted from the client channel session when 1st initialized.
-
-