Package org.apache.shale.dialog.scxml

Examples of org.apache.shale.dialog.scxml.DialogProperties


     */
    public void execute(EventDispatcher evtDispatcher, ErrorReporter errRep,
            SCInstance scInstance, Log appLog, Collection derivedEvents)
    throws ModelException, SCXMLExpressionException {

        DialogProperties dp = (DialogProperties) scInstance.getRootContext().
            get(Globals.DIALOG_PROPERTIES);
        dp.setNextViewId(viewId);

        if (log().isDebugEnabled()) {
            log().debug("<view>: Setting next view ID to '" + viewId + "'");
        }

View Full Code Here


     */
    public void execute(EventDispatcher evtDispatcher, ErrorReporter errRep,
            SCInstance scInstance, Log appLog, Collection derivedEvents)
    throws ModelException, SCXMLExpressionException {

        DialogProperties dp = (DialogProperties) scInstance.getRootContext().
            get(Globals.DIALOG_PROPERTIES);
        dp.setNextRedirect(true);

        if (log().isDebugEnabled()) {
            log().debug("<redirect>: Next view will be issued via a redirect");
        }

View Full Code Here

TOP

Related Classes of org.apache.shale.dialog.scxml.DialogProperties

Copyright © 2018 www.massapicom. 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.