File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed
modules/jooby-undertow/src/main/java Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -59,10 +59,16 @@ public class UndertowServer extends Server.Base {
5959
6060 private OutputFactory outputFactory ;
6161
62+ /**
63+ * Creates a web server.
64+ *
65+ * @param options Options.
66+ */
6267 public UndertowServer (@ NonNull ServerOptions options ) {
6368 setOptions (options );
6469 }
6570
71+ /** Creates a web server. */
6672 public UndertowServer () {}
6773
6874 @ Override
Original file line number Diff line number Diff line change 1+ /** Undertow Web Server. */
12@ edu .umd .cs .findbugs .annotations .ReturnValuesAreNonnullByDefault
23package io .jooby .undertow ;
Original file line number Diff line number Diff line change 1+ module io .jooby .undertow {
2+ exports io .jooby .undertow ;
3+
4+ requires io .jooby ;
5+ requires static com .github .spotbugs .annotations ;
6+ requires typesafe .config ;
7+ requires org .slf4j ;
8+ requires java .logging ;
9+ // All these are jar named modules :S
10+ requires undertow .core ;
11+ requires xnio .api ;
12+ requires static org .conscrypt ;
13+ }
You can’t perform that action at this time.
0 commit comments