Uses of Class
net.schmizz.sshj.common.DisconnectReason
-
Packages that use DisconnectReason Package Description net.schmizz.sshj.common net.schmizz.sshj.connection net.schmizz.sshj.sftp net.schmizz.sshj.transport net.schmizz.sshj.userauth -
-
Uses of DisconnectReason in net.schmizz.sshj.common
Fields in net.schmizz.sshj.common declared as DisconnectReason Modifier and Type Field Description private DisconnectReason
SSHException. reason
Methods in net.schmizz.sshj.common that return DisconnectReason Modifier and Type Method Description static DisconnectReason
DisconnectReason. fromInt(int code)
DisconnectReason
SSHException. getDisconnectReason()
static DisconnectReason
DisconnectReason. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DisconnectReason[]
DisconnectReason. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in net.schmizz.sshj.common with parameters of type DisconnectReason Constructor Description SSHException(DisconnectReason code)
SSHException(DisconnectReason code, java.lang.String message)
SSHException(DisconnectReason code, java.lang.String message, java.lang.Throwable cause)
SSHException(DisconnectReason code, java.lang.Throwable cause)
-
Uses of DisconnectReason in net.schmizz.sshj.connection
Constructors in net.schmizz.sshj.connection with parameters of type DisconnectReason Constructor Description ConnectionException(DisconnectReason code)
ConnectionException(DisconnectReason code, java.lang.String message)
ConnectionException(DisconnectReason code, java.lang.String message, java.lang.Throwable cause)
ConnectionException(DisconnectReason code, java.lang.Throwable cause)
-
Uses of DisconnectReason in net.schmizz.sshj.sftp
Constructors in net.schmizz.sshj.sftp with parameters of type DisconnectReason Constructor Description SFTPException(DisconnectReason code)
SFTPException(DisconnectReason code, java.lang.String message)
SFTPException(DisconnectReason code, java.lang.String message, java.lang.Throwable cause)
SFTPException(DisconnectReason code, java.lang.Throwable cause)
-
Uses of DisconnectReason in net.schmizz.sshj.transport
Methods in net.schmizz.sshj.transport with parameters of type DisconnectReason Modifier and Type Method Description void
Transport. disconnect(DisconnectReason reason)
Send a disconnect packet with the givenreason
, and closes this transport.void
Transport. disconnect(DisconnectReason reason, java.lang.String message)
Send a disconnect packet with the givenreason
andmessage
, and closes this transport.void
TransportImpl. disconnect(DisconnectReason reason)
void
TransportImpl. disconnect(DisconnectReason reason, java.lang.String message)
void
DisconnectListener. notifyDisconnect(DisconnectReason reason, java.lang.String message)
void
TransportImpl. notifyDisconnect(DisconnectReason reason, java.lang.String message)
TransportImpl implements its own default DisconnectListener.private void
TransportImpl. sendDisconnect(DisconnectReason reason, java.lang.String message)
Constructors in net.schmizz.sshj.transport with parameters of type DisconnectReason Constructor Description TransportException(DisconnectReason code)
TransportException(DisconnectReason code, java.lang.String message)
TransportException(DisconnectReason code, java.lang.String message, java.lang.Throwable cause)
TransportException(DisconnectReason code, java.lang.Throwable cause)
-
Uses of DisconnectReason in net.schmizz.sshj.userauth
Constructors in net.schmizz.sshj.userauth with parameters of type DisconnectReason Constructor Description UserAuthException(DisconnectReason code)
UserAuthException(DisconnectReason code, java.lang.String message)
UserAuthException(DisconnectReason code, java.lang.String message, java.lang.Throwable cause)
UserAuthException(DisconnectReason code, java.lang.Throwable cause)
-