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_AUTHIf set totruethenUserAuthMethodFactory.isSecureAuthenticationTransport(SessionContext)returnstrueeven if transport is insecure.static Property<Boolean>ALLOW_NON_INTEGRITY_AUTHIf set totruethenUserAuthMethodFactory.isDataIntegrityAuthenticationTransport(SessionContext)returnstrueeven if transport has no MAC(s) to verify message integritystatic Property<Duration>CLOSE_WAIT_TIMEOUTTimeout (milliseconds) for waiting on aCloseFutureto successfully complete its action.static Property<Integer>HEXDUMP_CHUNK_SIZEstatic Property<Duration>SESSION_HEARTBEAT_INTERVALProperty used to register the interval for the heartbeat - if not set or non-positive then disabledstatic Property<SessionHeartbeatController.HeartbeatType>SESSION_HEARTBEAT_TYPEProperty used to register theSessionHeartbeatController.HeartbeatType- if non-existent orNONEthen disabled.
-
-
-
Field Detail
-
ALLOW_INSECURE_AUTH
public static final Property<Boolean> ALLOW_INSECURE_AUTH
If set totruethenUserAuthMethodFactory.isSecureAuthenticationTransport(SessionContext)returnstrueeven if transport is insecure.
-
ALLOW_NON_INTEGRITY_AUTH
public static final Property<Boolean> ALLOW_NON_INTEGRITY_AUTH
If set totruethenUserAuthMethodFactory.isDataIntegrityAuthenticationTransport(SessionContext)returnstrueeven 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 orNONEthen 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 aCloseFutureto successfully complete its action.
-
-