use of io.vertx.ext.shell.term.HttpTermOptions in project vertx-examples by vert-x3.
the class RunShell method start.
@Override
public void start(Future<Void> startFuture) throws Exception {
ShellService service = ShellService.create(vertx, new ShellServiceOptions().setHttpOptions(new HttpTermOptions().setHost("localhost").setPort(8080).setAuthOptions(new ShiroAuthOptions().setConfig(new JsonObject().put("properties_path", "auth.properties")))));
service.start(ar -> {
if (ar.succeeded()) {
startFuture.succeeded();
} else {
startFuture.fail(ar.cause());
}
});
}
use of io.vertx.ext.shell.term.HttpTermOptions in project vertx-examples by vert-x3.
the class RunShell method start.
@Override
public void start(Promise<Void> startPromise) throws Exception {
ShellService service = ShellService.create(vertx, new ShellServiceOptions().setHttpOptions(new HttpTermOptions().setHost("localhost").setPort(8080).setAuthOptions(new ShiroAuthOptions().setConfig(new JsonObject().put("properties_path", "auth.properties")))));
service.start(startPromise);
}
Aggregations