* @param method the wave handler method
*/
private static void manageUniqueWaveTypeAction(final WaveReady<?> component, final String waveActionName, final Method method) {
// Get the WaveType from the WaveType registry
final WaveType wt = WaveTypeBase.getWaveType(waveActionName);
if (wt != null) {
// Method is not defined or is the default fallback one
if (method == null || AbstractWaveReady.PROCESS_WAVE_METHOD_NAME.equals(method.getName())) {
// Just listen the WaveType
component.listen(wt);