Method method = component.getClass().getMethod(methodName, new Class[] {FlowContext.class});
method.invoke(component,new Object[] {context});
} else {
//
// execute default method
component.execute(context);
}
} catch (NoSuchMethodException e) {
Object args[] = {
component.getClass().getName(),
methodName,