File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
vertx-auth-jwt/src/test/java/io/vertx/tests Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 11package io .vertx .tests ;
22
3- import io .vertx .core .AbstractVerticle ;
3+ import io .vertx .core .Future ;
4+ import io .vertx .core .VerticleBase ;
45import io .vertx .ext .auth .KeyStoreOptions ;
56import io .vertx .ext .auth .jwt .JWTAuth ;
67import io .vertx .ext .auth .jwt .JWTAuthOptions ;
78
8- public class DummyVerticle extends AbstractVerticle {
9+ public class DummyVerticle extends VerticleBase {
910
1011 private static final JWTAuthOptions config = new JWTAuthOptions ()
1112 .setKeyStore (new KeyStoreOptions ()
1213 .setPath ("keystore.jceks" )
1314 .setType ("jceks" )
1415 .setPassword ("secret" ));
1516
16- public void start () {
17+ public Future <?> start () throws Exception {
1718 JWTAuth .create (vertx , config );
19+ return super .start ();
1820 }
1921}
You can’t perform that action at this time.
0 commit comments