File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
ng-appserver/src/main/java/ng/appserver/directactions Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1313
1414/**
1515 * CHECKME: We need to cache both action classes and methods // Hugi 2024-08-14
16+ * FIXME: MIssing ability to define default DA class // // Hugi 2025-10-21
1617 */
1718
1819public class NGDirectActionRequestHandler extends NGRequestHandler {
@@ -47,13 +48,13 @@ public NGResponse handleRequest( NGRequest request ) {
4748 final NGActionResults actionResults = instance .performActionNamed ( directActionMethodName );
4849 return actionResults .generateResponse ();
4950 }
50- catch ( /* ClassNotFoundException |*/ InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException | NoSuchMethodException | SecurityException e ) {
51+ catch ( InstantiationException | IllegalAccessException | IllegalArgumentException | InvocationTargetException | NoSuchMethodException | SecurityException e ) {
5152 throw new RuntimeException ( e );
5253 }
5354 }
5455
5556 /**
56- * FIXME: This is a horrid method of registering Zdirect action classes // Hugi 2025-04-18
57+ * FIXME: Horrid method of registering direct action classes // Hugi 2025-04-18
5758 */
5859 public static void registerDirectActionClass ( Class <? extends NGDirectAction > directActionClass ) {
5960 _directActionClasses .put ( directActionClass .getName (), directActionClass );
You can’t perform that action at this time.
0 commit comments