// no flows on this page are active. This FullFlowComponent is an autoStart so it should do its thing and start.
// TODO: by default autoStart should clear all existing flows ( problem if we want to always have a flow active )
getFlowManagement().getLog().debug("Auto starting "+getFlowName()+" on page "+getPage().getPageName()+" activeflows="+getFlowManagement().getFlowStates());
StartFromDefinitionFlowLauncher flowLauncher = new StartFromDefinitionFlowLauncher(getFlowName(), null, getFlowManagement(), getFlowName(), getContainer(), getInitialValues());
try {
flow = flowLauncher.call();
} catch (FlowValidationException e) {
// getFlowResultHandler().handleValidationTrackings(e.getTrackings(), this);
return null;
}
}