Uses of Enum Class
org.miaixz.bus.extra.ssh.provider.jsch.ChannelType
Packages that use ChannelType
Package
Description
Provides an encapsulation for SSH (Secure Shell) operations, including port forwarding and SFTP functionalities.
Provides an encapsulation for the JSch (Java Secure Channel) library.
-
Uses of ChannelType in org.miaixz.bus.extra.ssh
Methods in org.miaixz.bus.extra.ssh with parameters of type ChannelTypeModifier and TypeMethodDescriptionstatic com.jcraft.jsch.ChannelJschKit.createChannel(com.jcraft.jsch.Session session, ChannelType channelType, long timeout) Creates an SSH channel but does not connect it.static com.jcraft.jsch.ChannelJschKit.openChannel(com.jcraft.jsch.Session session, ChannelType channelType, long timeout) Opens and connects an SSH channel of a specified type. -
Uses of ChannelType in org.miaixz.bus.extra.ssh.provider.jsch
Methods in org.miaixz.bus.extra.ssh.provider.jsch that return ChannelTypeModifier and TypeMethodDescriptionstatic ChannelTypeReturns the enum constant of this class with the specified name.static ChannelType[]ChannelType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.miaixz.bus.extra.ssh.provider.jsch with parameters of type ChannelTypeModifier and TypeMethodDescriptioncom.jcraft.jsch.ChannelJschSession.createChannel(ChannelType channelType) Creates an SSH channel but does not connect it.com.jcraft.jsch.ChannelJschSession.openChannel(ChannelType channelType) Opens and connects an SSH channel of a specified type.