Package org.apache.sshd.common
Class CommonModuleProperties
- java.lang.Object
-
- org.apache.sshd.common.CommonModuleProperties
-
public final class CommonModuleProperties extends Object
Configurable properties for sshd-common.- Author:
- Apache MINA SSHD Project
-
-
Field Summary
Fields Modifier and Type Field Description static Property<Boolean>
ALLOW_INSECURE_AUTH
If set totrue
thenUserAuthMethodFactory.isSecureAuthenticationTransport(SessionContext)
returnstrue
even if transport is insecure.static Property<Boolean>
ALLOW_NON_INTEGRITY_AUTH
If set totrue
thenUserAuthMethodFactory.isDataIntegrityAuthenticationTransport(SessionContext)
returnstrue
even if transport has no MAC(s) to verify message integritystatic Property<Duration>
CLOSE_WAIT_TIMEOUT
Timeout (milliseconds) for waiting on aCloseFuture
to successfully complete its action.static Property<Integer>
HEXDUMP_CHUNK_SIZE
static Property<Duration>
SESSION_HEARTBEAT_INTERVAL
Property used to register the interval for the heartbeat - if not set or non-positive then disabledstatic Property<SessionHeartbeatController.HeartbeatType>
SESSION_HEARTBEAT_TYPE
Property used to register theSessionHeartbeatController.HeartbeatType
- if non-existent orNONE
then disabled.
-
-
-
Field Detail
-
ALLOW_INSECURE_AUTH
public static final Property<Boolean> ALLOW_INSECURE_AUTH
If set totrue
thenUserAuthMethodFactory.isSecureAuthenticationTransport(SessionContext)
returnstrue
even if transport is insecure.
-
ALLOW_NON_INTEGRITY_AUTH
public static final Property<Boolean> ALLOW_NON_INTEGRITY_AUTH
If set totrue
thenUserAuthMethodFactory.isDataIntegrityAuthenticationTransport(SessionContext)
returnstrue
even if transport has no MAC(s) to verify message integrity
-
SESSION_HEARTBEAT_TYPE
public static final Property<SessionHeartbeatController.HeartbeatType> SESSION_HEARTBEAT_TYPE
Property used to register theSessionHeartbeatController.HeartbeatType
- if non-existent orNONE
then disabled. Same if some unknown string value is set as the property value.
-
SESSION_HEARTBEAT_INTERVAL
public static final Property<Duration> SESSION_HEARTBEAT_INTERVAL
Property used to register the interval for the heartbeat - if not set or non-positive then disabled
-
CLOSE_WAIT_TIMEOUT
public static final Property<Duration> CLOSE_WAIT_TIMEOUT
Timeout (milliseconds) for waiting on aCloseFuture
to successfully complete its action.
-
-