Package org.amplafi.flow

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


    public void onCancel(IRequestCycle cycle) {
        invokeIfNotNull(cycle, getCancelListener(), getEndListener());

        FlowState currentFlowState = getAttachedFlowState();
        String page = currentFlowState.cancelFlow();
        FlowWebUtils.activatePageIfNotNull(cycle, page, currentFlowState);
    }

    public void onPrevious(IRequestCycle cycle) {
        invokeIfNotNull(cycle, getPreviousListener());
View Full Code Here


    // cancel handling needed due to TAPESTRY-1673
    public void doCancelForm() {
        FlowState state = getFlowState();
        if (state!=null) {
            String page = state.cancelFlow();
            FlowWebUtils.activatePageIfNotNull(getPage().getRequestCycle(), page, state);
        }
    }

    /**
 
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.