comparison src/luan/host/WebHandler.java @ 1136:d30d400fd43d

add http/jetty
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 29 Jan 2018 17:50:49 -0700
parents 707a5d874f3e
children bdf27aa2a65c
comparison
equal deleted inserted replaced
1135:707a5d874f3e 1136:d30d400fd43d
27 import luan.LuanTable; 27 import luan.LuanTable;
28 import luan.LuanFunction; 28 import luan.LuanFunction;
29 import luan.modules.IoLuan; 29 import luan.modules.IoLuan;
30 import luan.modules.JavaLuan; 30 import luan.modules.JavaLuan;
31 import luan.modules.PackageLuan; 31 import luan.modules.PackageLuan;
32 import luan.modules.http.LuanHandler; 32 import luan.modules.http.jetty.LuanHandler;
33 import luan.modules.http.AuthenticationHandler; 33 import luan.modules.http.jetty.AuthenticationHandler;
34 import luan.modules.http.NotFound; 34 import luan.modules.http.jetty.NotFound;
35 35
36 36
37 public class WebHandler extends AbstractHandler { 37 public class WebHandler extends AbstractHandler {
38 private static final Logger logger = LoggerFactory.getLogger(WebHandler.class); 38 private static final Logger logger = LoggerFactory.getLogger(WebHandler.class);
39 39