Skip to content

Commit b81cdf5

Browse files
Add note on default DA class
1 parent 6c185b2 commit b81cdf5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ng-appserver/src/main/java/ng/appserver/directactions/NGDirectActionRequestHandler.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
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

1819
public 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 );

0 commit comments

Comments
 (0)