Uses of Interface
org.apache.sshd.common.Service
-
Packages that use Service Package Description org.apache.sshd.client.session org.apache.sshd.common org.apache.sshd.common.session org.apache.sshd.common.session.helpers org.apache.sshd.server.session -
-
Uses of Service in org.apache.sshd.client.session
Classes in org.apache.sshd.client.session that implement Service Modifier and Type Class Description class
ClientConnectionService
Client sidessh-connection
service.class
ClientUserAuthService
Client sidessh-auth
service.Fields in org.apache.sshd.client.session declared as Service Modifier and Type Field Description private Service
ClientSessionImpl.Services. next
Methods in org.apache.sshd.client.session that return Service Modifier and Type Method Description Service
ClientConnectionServiceFactory. create(Session session)
Service
ClientUserAuthServiceFactory. create(Session session)
(package private) Service
ClientSessionImpl.Services. getNext()
Methods in org.apache.sshd.client.session that return types with arguments of type Service Modifier and Type Method Description protected java.util.List<Service>
ClientSessionImpl. getServices()
-
Uses of Service in org.apache.sshd.common
Methods in org.apache.sshd.common that return Service Modifier and Type Method Description static Service
ServiceFactory. create(java.util.Collection<? extends ServiceFactory> factories, java.lang.String name, Session session)
Create an instance of the specified name by looking up the needed factory in the list (case insensitive.Service
ServiceFactory. create(Session session)
-
Uses of Service in org.apache.sshd.common.session
Subinterfaces of Service in org.apache.sshd.common.session Modifier and Type Interface Description interface
ConnectionService
Interface implementing ssh-connection service.Methods in org.apache.sshd.common.session with type parameters of type Service Modifier and Type Method Description <T extends Service>
TSession. getService(java.lang.Class<T> clazz)
Get the service of the specified type.Methods in org.apache.sshd.common.session with parameters of type Service Modifier and Type Method Description default boolean
SessionDisconnectHandler. handleAuthCountDisconnectReason(Session session, Service service, java.lang.String serviceName, java.lang.String method, java.lang.String user, int currentAuthCount, int maxAuthCount)
Invoked if the number of authentication attempts exceeded the maximum alloweddefault boolean
SessionDisconnectHandler. handleAuthParamsDisconnectReason(Session session, Service service, java.lang.String authUser, java.lang.String username, java.lang.String authService, java.lang.String serviceName)
Invoked if the authentication parameters changed in mid-authentication process.default boolean
SessionDisconnectHandler. handleSessionsCountDisconnectReason(Session session, Service service, java.lang.String username, int currentSessionCount, int maxSessionCount)
Called to inform that the maximum allowed concurrent sessions threshold has been exceeded. -
Uses of Service in org.apache.sshd.common.session.helpers
Classes in org.apache.sshd.common.session.helpers that implement Service Modifier and Type Class Description class
AbstractConnectionService
Base implementation of ConnectionService.Fields in org.apache.sshd.common.session.helpers declared as Service Modifier and Type Field Description private Service
CurrentService. currentService
Methods in org.apache.sshd.common.session.helpers with type parameters of type Service Modifier and Type Method Description <T extends Service>
TAbstractSession. getService(java.lang.Class<T> clazz)
Methods in org.apache.sshd.common.session.helpers that return Service Modifier and Type Method Description Service
CurrentService. getService()
Retrieves the current service.Methods in org.apache.sshd.common.session.helpers that return types with arguments of type Service Modifier and Type Method Description protected java.util.List<Service>
AbstractSession. getServices()
Methods in org.apache.sshd.common.session.helpers with parameters of type Service Modifier and Type Method Description void
CurrentService. set(Service service, java.lang.String name, boolean start)
Sets the current service and its name, and optionally starts the service. -
Uses of Service in org.apache.sshd.server.session
Classes in org.apache.sshd.server.session that implement Service Modifier and Type Class Description class
ServerConnectionService
Server sidessh-connection
service.class
ServerUserAuthService
Methods in org.apache.sshd.server.session that return Service Modifier and Type Method Description Service
ServerConnectionServiceFactory. create(Session session)
Service
ServerUserAuthServiceFactory. create(Session session)
-