We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
A direct action is basically a method that can be invoked via a URL, returning a WOResponse.
Direct Actions are
For example, a direct action that might return the string "Hello" to the user would read like this
public NGActionResults myAction() { NGResponse response = new NGResponse(); response.setContent( "Hello" ); return response; }