File tree Expand file tree Collapse file tree
ng-adaptor-jetty/src/main/java/ng/adaptor/jetty Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ public void start( NGApplication application ) {
8181 final ServerConnector connector = new ServerConnector ( server , connectionFactory );
8282 connector .setPort ( port );
8383 server .addConnector ( connector );
84- server .setHandler ( new NGHandler ( application ) );
84+ server .setHandler ( new NGJettyHandler ( application ) );
8585
8686 // FIXME: Temporary lifecycle event. Probably removed once we have a stable application initialization cycle // Hugi 2025-10-02
8787 server .addBean ( new LifeCycle .Listener () {
@@ -108,11 +108,11 @@ public void lifeCycleStarted( LifeCycle event ) {
108108 }
109109 }
110110
111- public static class NGHandler extends Handler .Abstract {
111+ public static class NGJettyHandler extends Handler .Abstract {
112112
113113 private final NGApplication _application ;
114114
115- public NGHandler ( NGApplication application ) {
115+ public NGJettyHandler ( NGApplication application ) {
116116 _application = application ;
117117 }
118118
You can’t perform that action at this time.
0 commit comments