Uses of Interface
net.schmizz.sshj.Service
-
Packages that use Service Package Description net.schmizz.sshj net.schmizz.sshj.connection net.schmizz.sshj.transport net.schmizz.sshj.userauth -
-
Uses of Service in net.schmizz.sshj
Classes in net.schmizz.sshj that implement Service Modifier and Type Class Description class
AbstractService
An abstract class forService
that implements common or default functionality. -
Uses of Service in net.schmizz.sshj.connection
Classes in net.schmizz.sshj.connection that implement Service Modifier and Type Class Description class
ConnectionImpl
Connection
implementation. -
Uses of Service in net.schmizz.sshj.transport
Classes in net.schmizz.sshj.transport that implement Service Modifier and Type Class Description private static class
TransportImpl.NullService
Fields in net.schmizz.sshj.transport declared as Service Modifier and Type Field Description private Service
TransportImpl. nextService
The next service that will be activated, only set when sending an SSH_MSG_SERVICE_REQUESTprivate Service
TransportImpl. nullService
private Service
TransportImpl. service
Currently active service e.g.Methods in net.schmizz.sshj.transport that return Service Modifier and Type Method Description Service
Transport. getService()
Service
TransportImpl. getService()
Methods in net.schmizz.sshj.transport with parameters of type Service Modifier and Type Method Description void
Transport. reqService(Service service)
Request a SSH service represented by aService
instance.void
TransportImpl. reqService(Service service)
void
Transport. setService(Service service)
Sets the currently activeService
.void
TransportImpl. setService(Service service)
-
Uses of Service in net.schmizz.sshj.userauth
Classes in net.schmizz.sshj.userauth that implement Service Modifier and Type Class Description class
UserAuthImpl
UserAuth
implementation.Fields in net.schmizz.sshj.userauth declared as Service Modifier and Type Field Description private Service
UserAuthImpl. nextService
Methods in net.schmizz.sshj.userauth with parameters of type Service Modifier and Type Method Description boolean
UserAuth. authenticate(java.lang.String username, Service nextService, AuthMethod methods, int timeoutMs)
Attempt to authenticateusername
using each ofmethods
in order.boolean
UserAuthImpl. authenticate(java.lang.String username, Service nextService, AuthMethod method, int timeoutMs)
private AuthParams
UserAuthImpl. makeAuthParams(java.lang.String username, Service nextService)
-