public final class

WebWorkActionHelper

extends Object
java.lang.Object
   ↳ com.atlassian.confluence.xwork.WebWorkActionHelper

Class Overview

Helper class for webwork actions.

Summary

Public Methods
static Method getActionMethod(Class<? extends Action> actionClass, String methodName)
Finds the action method on the action class.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public static Method getActionMethod (Class<? extends Action> actionClass, String methodName)

Finds the action method on the action class. This method follows the logic found in getMethod() without the need to instantiate the action class.

Parameters
actionClass The webwork action class
methodName the name of the action method
Returns
  • Method - the action method named methodName
Throws
NoSuchMethodException if the method named methodName cannot be found