Uses of Interface
io.vertx.ext.shell.term.TermServer
Packages that use TermServer
-
Uses of TermServer in io.vertx.ext.shell
Methods in io.vertx.ext.shell with parameters of type TermServerModifier and TypeMethodDescriptionShellServer.registerTermServer(TermServer termServer) Register a term server to this shell server, the term server lifecycle methods are managed by this shell server. -
Uses of TermServer in io.vertx.ext.shell.term
Methods in io.vertx.ext.shell.term that return TermServerModifier and TypeMethodDescriptionTermServer.authenticationProvider(AuthenticationProvider provider) Set an auth provider to use, any provider configured in options will override this provider.static TermServerTermServer.createHttpTermServer(Vertx vertx) Create a term server for the HTTP protocol.static TermServerTermServer.createHttpTermServer(Vertx vertx, HttpTermOptions options) Create a term server for the HTTP protocol.static TermServerTermServer.createHttpTermServer(Vertx vertx, Router router) Create a term server for the HTTP protocol, using an existing router.static TermServerTermServer.createHttpTermServer(Vertx vertx, Router router, HttpTermOptions options) Create a term server for the HTTP protocol, using an existing router.static TermServerTermServer.createSSHTermServer(Vertx vertx) Create a term server for the SSH protocol.static TermServerTermServer.createSSHTermServer(Vertx vertx, SSHTermOptions options) Create a term server for the SSH protocol.static TermServerTermServer.createTelnetTermServer(Vertx vertx) Create a term server for the Telnet protocol.static TermServerTermServer.createTelnetTermServer(Vertx vertx, TelnetTermOptions options) Create a term server for the Telnet protocol.TermServer.termHandler(Handler<Term> handler) Set the term handler that will receive incoming client connections.