public class NoContent
extends Object
implements Action
Set the response status to 204 NO_CONTENT. This tells the browser to not update the current page. This can be useful
if you have a form that you want to submit but you do not want to reload the whole page just because of that. You can
then use some client side Javascript to notify the user that the form was submitted.
This method is where the logic of the action is executed. Parameters are passed by calling set-methods, or by
implementing the ParameterAware interface.