Uses of Interface
org.apache.sshd.common.Property
-
Packages that use Property Package Description org.apache.sshd.common -
-
Uses of Property in org.apache.sshd.common
Classes in org.apache.sshd.common that implement Property Modifier and Type Class Description static classProperty.BaseProperty<T>static classProperty.BooleanPropertystatic classProperty.CharsetPropertystatic classProperty.DurationInSecondsPropertystatic classProperty.DurationPropertystatic classProperty.EnumProperty<T extends Enum<T>>static classProperty.IntegerPropertystatic classProperty.LongPropertystatic classProperty.ObjectPropertystatic classProperty.StringPropertystatic classProperty.Validating<T>Fields in org.apache.sshd.common declared as Property Modifier and Type Field Description static Property<Boolean>CommonModuleProperties. ALLOW_INSECURE_AUTHIf set totruethenUserAuthMethodFactory.isSecureAuthenticationTransport(SessionContext)returnstrueeven if transport is insecure.static Property<Boolean>CommonModuleProperties. ALLOW_NON_INTEGRITY_AUTHIf set totruethenUserAuthMethodFactory.isDataIntegrityAuthenticationTransport(SessionContext)returnstrueeven if transport has no MAC(s) to verify message integritystatic Property<Duration>CommonModuleProperties. CLOSE_WAIT_TIMEOUTTimeout (milliseconds) for waiting on aCloseFutureto successfully complete its action.protected Property<T>Property.Validating. delegatestatic Property<Integer>CommonModuleProperties. HEXDUMP_CHUNK_SIZEstatic Property<Duration>CommonModuleProperties. SESSION_HEARTBEAT_INTERVALProperty used to register the interval for the heartbeat - if not set or non-positive then disabledstatic Property<SessionHeartbeatController.HeartbeatType>CommonModuleProperties. SESSION_HEARTBEAT_TYPEProperty used to register theSessionHeartbeatController.HeartbeatType- if non-existent orNONEthen disabled.Methods in org.apache.sshd.common that return Property Modifier and Type Method Description static Property<Boolean>Property. bool(String name)static Property<Boolean>Property. bool(String name, boolean def)static Property<Charset>Property. charset(String name)static Property<Charset>Property. charset(String name, Charset def)static Property<Duration>Property. duration(String name)static Property<Duration>Property. duration(String name, Duration def)static Property<Duration>Property. duration(String name, Duration def, Duration min)static Property<Duration>Property. durationSec(String name)static Property<Duration>Property. durationSec(String name, Duration def)static Property<Duration>Property. durationSec(String name, Duration def, Duration min)static <T extends Enum<T>>
Property<T>Property. enum_(String name, Class<T> type)static <T extends Enum<T>>
Property<T>Property. enum_(String name, Class<T> type, T def)static Property<Integer>Property. integer(String name)static Property<Integer>Property. integer(String name, int def)static Property<Long>Property. long_(String name)static Property<Long>Property. long_(String name, long def)static Property<Object>Property. object(String name)static Property<Object>Property. object(String name, Object def)static Property<String>Property. string(String name)static Property<String>Property. string(String name, String def)static <T> Property<T>Property. validating(Property<T> prop, Consumer<? super T> validator)Methods in org.apache.sshd.common with parameters of type Property Modifier and Type Method Description static <T> Property<T>Property. validating(Property<T> prop, Consumer<? super T> validator)Constructors in org.apache.sshd.common with parameters of type Property Constructor Description Validating(Property<T> delegate, Consumer<? super T> validator)
-