}
private static boolean parameterIgnored(Object action) {
if (action instanceof ParameterIgnored)
return true;
ActionType annot = action.getClass().getAnnotation(ActionType.class);
return annot != null && annot.parameterIgnored();
}
/** Coerces the request's parameters to action's corresponding fields.
*/
protected void coerceParameters(ActionContext ac, Object action)
throws Throwable {