Examples of morphFlow()


Examples of org.amplafi.flow.FlowState.morphFlow()

    private void onAltFinish(IRequestCycle cycle, FlowTransition flowTransition) {
        FlowState attachedFlow = getAttachedFlowState();
        /// HACK should be calling flowTransition.getFlowLauncher()
        if (flowTransition.isMorphingFlow()) {
            String nextFlow = flowTransition.getNextFlowType();
            String page = attachedFlow.morphFlow(nextFlow, flowTransition.getInitialValues());
            FlowWebUtils.activatePageIfNotNull(cycle, page, attachedFlow);
        } else {
            attachedFlow.setFinishKey(flowTransition.getMapKey());
            onFinish(cycle);
        }
View Full Code Here

Examples of org.amplafi.flow.FlowState.morphFlow()

    }

    @Override
    public FlowState call() {
        FlowState currentFlowState = getFlowState();
        currentFlowState.morphFlow(getFlowTypeName(), getValuesMap());
        return currentFlowState;
    }
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.