| Package | Description |
|---|---|
| org.apache.sshd.common |
| Modifier and Type | Class and Description |
|---|---|
static class |
Property.BaseProperty<T> |
static class |
Property.BooleanProperty |
static class |
Property.CharsetProperty |
static class |
Property.DurationInSecondsProperty |
static class |
Property.DurationProperty |
static class |
Property.EnumProperty<T extends Enum<T>> |
static class |
Property.IntegerProperty |
static class |
Property.LongProperty |
static class |
Property.ObjectProperty |
static class |
Property.StringProperty |
static class |
Property.Validating<T> |
| Modifier and Type | Field and Description |
|---|---|
static Property<Boolean> |
CommonModuleProperties.ALLOW_INSECURE_AUTH
If set to
true then
UserAuthMethodFactory.isSecureAuthenticationTransport(SessionContext) returns
true even if transport is insecure. |
static Property<Boolean> |
CommonModuleProperties.ALLOW_NON_INTEGRITY_AUTH
If set to
true then
UserAuthMethodFactory.isDataIntegrityAuthenticationTransport(SessionContext)
returns true even if transport has no MAC(s) to verify message integrity |
static Property<Duration> |
CommonModuleProperties.CLOSE_WAIT_TIMEOUT
Timeout (milliseconds) for waiting on a
CloseFuture to successfully complete its action. |
protected Property<T> |
Property.Validating.delegate |
static Property<Integer> |
CommonModuleProperties.HEXDUMP_CHUNK_SIZE |
static Property<Duration> |
CommonModuleProperties.SESSION_HEARTBEAT_INTERVAL
Property used to register the interval for the heartbeat - if not set or non-positive then disabled
|
static Property<SessionHeartbeatController.HeartbeatType> |
CommonModuleProperties.SESSION_HEARTBEAT_TYPE
Property used to register the
SessionHeartbeatController.HeartbeatType -
if non-existent or NONE then disabled. |
| Modifier and Type | Method and 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.durationSec(String name) |
static Property<Duration> |
Property.durationSec(String name,
Duration def) |
static <T extends Enum<T>> |
Property.enum_(String name,
Class<T> type) |
static <T extends Enum<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) |
| Modifier and Type | Method and Description |
|---|---|
static <T> Property<T> |
Property.validating(Property<T> prop,
Consumer<? super T> validator) |
| Constructor and Description |
|---|
Validating(Property<T> delegate,
Consumer<? super T> validator) |
Copyright © 2018–2021 The Apache Software Foundation. All rights reserved.