2020-07-27 10:43:57 +02:00
|
|
|
import org.xbib.netty.http.server.protocol.http1.Http1;
|
|
|
|
import org.xbib.netty.http.server.protocol.http2.Http2;
|
2020-07-06 00:08:07 +02:00
|
|
|
|
2020-05-20 14:56:37 +02:00
|
|
|
module org.xbib.netty.http.server {
|
2020-07-06 00:08:07 +02:00
|
|
|
uses org.xbib.netty.http.server.api.security.ServerCertificateProvider;
|
|
|
|
uses org.xbib.netty.http.server.api.ServerProtocolProvider;
|
|
|
|
uses org.xbib.netty.http.common.TransportProvider;
|
2020-05-20 14:56:37 +02:00
|
|
|
exports org.xbib.netty.http.server;
|
|
|
|
exports org.xbib.netty.http.server.cookie;
|
|
|
|
exports org.xbib.netty.http.server.endpoint;
|
|
|
|
exports org.xbib.netty.http.server.endpoint.service;
|
|
|
|
exports org.xbib.netty.http.server.handler;
|
2020-07-27 10:43:57 +02:00
|
|
|
exports org.xbib.netty.http.server.protocol.http1;
|
|
|
|
exports org.xbib.netty.http.server.protocol.http2;
|
2020-05-20 14:56:37 +02:00
|
|
|
exports org.xbib.netty.http.server.util;
|
2020-06-05 10:40:42 +02:00
|
|
|
requires transitive org.xbib.netty.http.server.api;
|
2020-05-20 14:56:37 +02:00
|
|
|
requires java.logging;
|
2020-07-06 00:08:07 +02:00
|
|
|
provides org.xbib.netty.http.server.api.ServerProtocolProvider with Http1, Http2;
|
2020-05-20 14:56:37 +02:00
|
|
|
}
|