Package org.apache.sshd.common
Class CommonModuleProperties
- java.lang.Object
-
- org.apache.sshd.common.CommonModuleProperties
-
public final class CommonModuleProperties extends java.lang.ObjectConfigurable properties for sshd-common.
-
-
Field Summary
Fields Modifier and Type Field Description static Property<java.lang.Boolean>ALLOW_INSECURE_AUTHIf set totruethenUserAuthMethodFactory.isSecureAuthenticationTransport(SessionContext)returnstrueeven if transport is insecure.static Property<java.lang.Boolean>ALLOW_NON_INTEGRITY_AUTHIf set totruethenUserAuthMethodFactory.isDataIntegrityAuthenticationTransport(SessionContext)returnstrueeven if transport has no MAC(s) to verify message integritystatic Property<java.time.Duration>CLOSE_WAIT_TIMEOUTTimeout (milliseconds) for waiting on aCloseFutureto successfully complete its action.static Property<java.lang.Integer>HEXDUMP_CHUNK_SIZEstatic Property<java.time.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.
-
Constructor Summary
Constructors Modifier Constructor Description privateCommonModuleProperties()
-
-
-
Field Detail
-
ALLOW_INSECURE_AUTH
public static final Property<java.lang.Boolean> ALLOW_INSECURE_AUTH
If set totruethenUserAuthMethodFactory.isSecureAuthenticationTransport(SessionContext)returnstrueeven if transport is insecure.
-
ALLOW_NON_INTEGRITY_AUTH
public static final Property<java.lang.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<java.time.Duration> SESSION_HEARTBEAT_INTERVAL
Property used to register the interval for the heartbeat - if not set or non-positive then disabled
-
HEXDUMP_CHUNK_SIZE
public static final Property<java.lang.Integer> HEXDUMP_CHUNK_SIZE
-
CLOSE_WAIT_TIMEOUT
public static final Property<java.time.Duration> CLOSE_WAIT_TIMEOUT
Timeout (milliseconds) for waiting on aCloseFutureto successfully complete its action.
-
-