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 classClientConnectionServiceClient sidessh-connectionservice.classClientUserAuthServiceClient sidessh-authservice.Methods in org.apache.sshd.client.session that return Service Modifier and Type Method Description ServiceClientConnectionServiceFactory. create(Session session)ServiceClientUserAuthServiceFactory. create(Session session)Methods in org.apache.sshd.client.session that return types with arguments of type Service Modifier and Type Method Description protected 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 ServiceServiceFactory. create(Collection<? extends ServiceFactory> factories, String name, Session session)Create an instance of the specified name by looking up the needed factory in the list (case insensitive.ServiceServiceFactory. 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 interfaceConnectionServiceInterface 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(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 booleanSessionDisconnectHandler. handleAuthCountDisconnectReason(Session session, Service service, String serviceName, String method, String user, int currentAuthCount, int maxAuthCount)Invoked if the number of authentication attempts exceeded the maximum alloweddefault booleanSessionDisconnectHandler. handleAuthParamsDisconnectReason(Session session, Service service, String authUser, String username, String authService, String serviceName)Invoked if the authentication parameters changed in mid-authentication process.default booleanSessionDisconnectHandler. handleSessionsCountDisconnectReason(Session session, Service service, 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 classAbstractConnectionServiceBase implementation of ConnectionService.Methods in org.apache.sshd.common.session.helpers with type parameters of type Service Modifier and Type Method Description <T extends Service>
TAbstractSession. getService(Class<T> clazz)Methods in org.apache.sshd.common.session.helpers that return Service Modifier and Type Method Description ServiceCurrentService. 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 List<Service>AbstractSession. getServices()Methods in org.apache.sshd.common.session.helpers with parameters of type Service Modifier and Type Method Description voidCurrentService. set(Service service, 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 classServerConnectionServiceServer sidessh-connectionservice.classServerUserAuthServiceMethods in org.apache.sshd.server.session that return Service Modifier and Type Method Description ServiceServerConnectionServiceFactory. create(Session session)ServiceServerUserAuthServiceFactory. create(Session session)
-