Uses of Class
org.apache.sshd.common.AttributeRepository.AttributeKey
-
-
Uses of AttributeRepository.AttributeKey in org.apache.sshd.client.auth.pubkey
Fields in org.apache.sshd.client.auth.pubkey declared as AttributeRepository.AttributeKey Modifier and Type Field Description static AttributeRepository.AttributeKey<java.lang.String>UserAuthPublicKey. IDENTITY_AGENTIs set on aClientSessionwhen it is created; contains the value of theIdentityAgentSSH config setting.static AttributeRepository.AttributeKey<java.lang.Boolean>UserAuthPublicKey. USE_DEFAULT_IDENTITIESIs set on aClientSessionwhen it is created; ifBoolean.FALSE, no default identities shall be used. -
Uses of AttributeRepository.AttributeKey in org.apache.sshd.client.session
Fields in org.apache.sshd.client.session declared as AttributeRepository.AttributeKey Modifier and Type Field Description static AttributeRepository.AttributeKey<SshdSocketAddress>ClientSessionCreator. TARGET_SERVER -
Uses of AttributeRepository.AttributeKey in org.apache.sshd.common
Methods in org.apache.sshd.common that return types with arguments of type AttributeRepository.AttributeKey Modifier and Type Method Description java.util.Collection<AttributeRepository.AttributeKey<?>>AttributeRepository. attributeKeys()Methods in org.apache.sshd.common with parameters of type AttributeRepository.AttributeKey Modifier and Type Method Description default <T> TAttributeStore. computeAttributeIfAbsent(AttributeRepository.AttributeKey<T> key, java.util.function.Function<? super AttributeRepository.AttributeKey<T>,? extends T> resolver)If the specified key is not already associated with a value (or is mapped tonull), attempts to compute its value using the given mapping function and enters it into this map unlessnull.<T> TAttributeRepository. getAttribute(AttributeRepository.AttributeKey<T> key)Returns the value of the user-defined attribute.static <A> AttributeRepositoryAttributeRepository. ofKeyValuePair(AttributeRepository.AttributeKey<A> key, A value)<T> TAttributeStore. removeAttribute(AttributeRepository.AttributeKey<T> key)Removes the user-defined attributedefault <T> TAttributeRepository. resolveAttribute(AttributeRepository.AttributeKey<T> key)Attempts to resolve the associated value by going up the store's hierarchy (if any)default <T> TFactoryManager. resolveAttribute(AttributeRepository.AttributeKey<T> key)static <T> TFactoryManager. resolveAttribute(FactoryManager manager, AttributeRepository.AttributeKey<T> key)<T> TAttributeStore. setAttribute(AttributeRepository.AttributeKey<T> key, T value)Sets a user-defined attribute.Method parameters in org.apache.sshd.common with type arguments of type AttributeRepository.AttributeKey Modifier and Type Method Description default <T> TAttributeStore. computeAttributeIfAbsent(AttributeRepository.AttributeKey<T> key, java.util.function.Function<? super AttributeRepository.AttributeKey<T>,? extends T> resolver)If the specified key is not already associated with a value (or is mapped tonull), attempts to compute its value using the given mapping function and enters it into this map unlessnull.static AttributeRepositoryAttributeRepository. ofAttributesMap(java.util.Map<AttributeRepository.AttributeKey<?>,?> attributes) -
Uses of AttributeRepository.AttributeKey in org.apache.sshd.common.channel
Fields in org.apache.sshd.common.channel with type parameters of type AttributeRepository.AttributeKey Modifier and Type Field Description private java.util.Map<AttributeRepository.AttributeKey<?>,java.lang.Object>AbstractChannel. attributesMethods in org.apache.sshd.common.channel that return types with arguments of type AttributeRepository.AttributeKey Modifier and Type Method Description java.util.Collection<AttributeRepository.AttributeKey<?>>AbstractChannel. attributeKeys()Methods in org.apache.sshd.common.channel with parameters of type AttributeRepository.AttributeKey Modifier and Type Method Description <T> TAbstractChannel. computeAttributeIfAbsent(AttributeRepository.AttributeKey<T> key, java.util.function.Function<? super AttributeRepository.AttributeKey<T>,? extends T> resolver)<T> TAbstractChannel. getAttribute(AttributeRepository.AttributeKey<T> key)<T> TAbstractChannel. removeAttribute(AttributeRepository.AttributeKey<T> key)default <T> TChannel. resolveAttribute(AttributeRepository.AttributeKey<T> key)static <T> TChannel. resolveAttribute(Channel channel, AttributeRepository.AttributeKey<T> key)Attempts to use the channel attribute, if not found then tries the session<T> TAbstractChannel. setAttribute(AttributeRepository.AttributeKey<T> key, T value)Method parameters in org.apache.sshd.common.channel with type arguments of type AttributeRepository.AttributeKey Modifier and Type Method Description <T> TAbstractChannel. computeAttributeIfAbsent(AttributeRepository.AttributeKey<T> key, java.util.function.Function<? super AttributeRepository.AttributeKey<T>,? extends T> resolver) -
Uses of AttributeRepository.AttributeKey in org.apache.sshd.common.helpers
Fields in org.apache.sshd.common.helpers with type parameters of type AttributeRepository.AttributeKey Modifier and Type Field Description private java.util.Map<AttributeRepository.AttributeKey<?>,java.lang.Object>AbstractFactoryManager. attributesMethods in org.apache.sshd.common.helpers that return types with arguments of type AttributeRepository.AttributeKey Modifier and Type Method Description java.util.Collection<AttributeRepository.AttributeKey<?>>AbstractFactoryManager. attributeKeys()Methods in org.apache.sshd.common.helpers with parameters of type AttributeRepository.AttributeKey Modifier and Type Method Description <T> TAbstractFactoryManager. computeAttributeIfAbsent(AttributeRepository.AttributeKey<T> key, java.util.function.Function<? super AttributeRepository.AttributeKey<T>,? extends T> resolver)<T> TAbstractFactoryManager. getAttribute(AttributeRepository.AttributeKey<T> key)<T> TAbstractFactoryManager. removeAttribute(AttributeRepository.AttributeKey<T> key)<T> TAbstractFactoryManager. setAttribute(AttributeRepository.AttributeKey<T> key, T value)Method parameters in org.apache.sshd.common.helpers with type arguments of type AttributeRepository.AttributeKey Modifier and Type Method Description <T> TAbstractFactoryManager. computeAttributeIfAbsent(AttributeRepository.AttributeKey<T> key, java.util.function.Function<? super AttributeRepository.AttributeKey<T>,? extends T> resolver) -
Uses of AttributeRepository.AttributeKey in org.apache.sshd.common.kex.extension
Fields in org.apache.sshd.common.kex.extension declared as AttributeRepository.AttributeKey Modifier and Type Field Description static AttributeRepository.AttributeKey<java.lang.Boolean>DefaultServerKexExtensionHandler. CLIENT_REQUESTED_EXT_INFOSessionAttributeRepository.AttributeKeystoring whether the client requested to get the EXT_INFO message.static AttributeRepository.AttributeKey<java.lang.Boolean>DefaultServerKexExtensionHandler. EXT_INFO_SENT_AT_NEWKEYSSessionAttributeRepository.AttributeKeystoring whether the server sent an EXT_INFO message atKexExtensionHandler.KexPhase.NEWKEYS.static AttributeRepository.AttributeKey<java.lang.Integer>DefaultClientKexExtensionHandler. HOSTBOUND_AUTHENTICATIONSessionAttributeRepository.AttributeKeystoring the version if the server supports host-bound public key authentication.static AttributeRepository.AttributeKey<java.util.Set<java.lang.String>>DefaultClientKexExtensionHandler. SERVER_ALGORITHMSSessionAttributeRepository.AttributeKeystoring the algorithms announced by the server as known. -
Uses of AttributeRepository.AttributeKey in org.apache.sshd.common.session
Methods in org.apache.sshd.common.session with parameters of type AttributeRepository.AttributeKey Modifier and Type Method Description default <T> TSession. resolveAttribute(AttributeRepository.AttributeKey<T> key)static <T> TSession. resolveAttribute(Session session, AttributeRepository.AttributeKey<T> key)Attempts to use the session's attribute, if not found then tries the factory manager -
Uses of AttributeRepository.AttributeKey in org.apache.sshd.common.session.helpers
Fields in org.apache.sshd.common.session.helpers with type parameters of type AttributeRepository.AttributeKey Modifier and Type Field Description private java.util.Map<AttributeRepository.AttributeKey<?>,java.lang.Object>SessionHelper. attributesSession specific attributesMethods in org.apache.sshd.common.session.helpers that return types with arguments of type AttributeRepository.AttributeKey Modifier and Type Method Description java.util.Collection<AttributeRepository.AttributeKey<?>>SessionHelper. attributeKeys()Methods in org.apache.sshd.common.session.helpers with parameters of type AttributeRepository.AttributeKey Modifier and Type Method Description <T> TSessionHelper. computeAttributeIfAbsent(AttributeRepository.AttributeKey<T> key, java.util.function.Function<? super AttributeRepository.AttributeKey<T>,? extends T> resolver)<T> TSessionHelper. getAttribute(AttributeRepository.AttributeKey<T> key)<T> TSessionHelper. removeAttribute(AttributeRepository.AttributeKey<T> key)<T> TSessionHelper. setAttribute(AttributeRepository.AttributeKey<T> key, T value)Method parameters in org.apache.sshd.common.session.helpers with type arguments of type AttributeRepository.AttributeKey Modifier and Type Method Description <T> TSessionHelper. computeAttributeIfAbsent(AttributeRepository.AttributeKey<T> key, java.util.function.Function<? super AttributeRepository.AttributeKey<T>,? extends T> resolver) -
Uses of AttributeRepository.AttributeKey in org.apache.sshd.server.auth.pubkey
Fields in org.apache.sshd.server.auth.pubkey declared as AttributeRepository.AttributeKey Modifier and Type Field Description static AttributeRepository.AttributeKey<AuthorizedKeyEntry>AuthorizedKeyEntriesPublickeyAuthenticator. AUTHORIZED_KEYstatic AttributeRepository.AttributeKey<java.util.Map<java.security.PublicKey,java.lang.Boolean>>CachingPublicKeyAuthenticator. CACHE_ATTRIBUTETheAttributeKeyused to store the cached authentication results on the session instance -
Uses of AttributeRepository.AttributeKey in org.apache.sshd.sftp.client.fs
Fields in org.apache.sshd.sftp.client.fs declared as AttributeRepository.AttributeKey Modifier and Type Field Description static AttributeRepository.AttributeKey<java.lang.Boolean>SftpFileSystem. OWNED_SESSIONAnAttributeRepository.AttributeKeythat can be set toBoolean.TRUEon theClientSessionto tell theSftpFileSystemthat it owns that session and should close it when theSftpFileSystemitself is closed. -
Uses of AttributeRepository.AttributeKey in org.apache.sshd.sftp.server
Fields in org.apache.sshd.sftp.server with type parameters of type AttributeRepository.AttributeKey Modifier and Type Field Description private java.util.Map<AttributeRepository.AttributeKey<?>,java.lang.Object>Handle. attributesMethods in org.apache.sshd.sftp.server that return types with arguments of type AttributeRepository.AttributeKey Modifier and Type Method Description java.util.Collection<AttributeRepository.AttributeKey<?>>Handle. attributeKeys()Methods in org.apache.sshd.sftp.server with parameters of type AttributeRepository.AttributeKey Modifier and Type Method Description <T> THandle. computeAttributeIfAbsent(AttributeRepository.AttributeKey<T> key, java.util.function.Function<? super AttributeRepository.AttributeKey<T>,? extends T> resolver)<T> THandle. getAttribute(AttributeRepository.AttributeKey<T> key)<T> THandle. removeAttribute(AttributeRepository.AttributeKey<T> key)<T> THandle. setAttribute(AttributeRepository.AttributeKey<T> key, T value)Method parameters in org.apache.sshd.sftp.server with type arguments of type AttributeRepository.AttributeKey Modifier and Type Method Description <T> THandle. computeAttributeIfAbsent(AttributeRepository.AttributeKey<T> key, java.util.function.Function<? super AttributeRepository.AttributeKey<T>,? extends T> resolver)
-