Package org.apache.shale.dialog

Examples of org.apache.shale.dialog.Status


        // AbstractFacesBean subtypes in the usecases war for the proof of
        // concept).
        // Ignoring STATUS_PARAM since usecases war doesn't use it for the
        // log on / edit profile dialogs.
        // TODO: The next line should be Dialog Manager implementation agnostic
        Status status =  new org.apache.shale.dialog.impl.StatusImpl();

        context.getExternalContext().getSessionMap().put(Globals.STATUS, status);
        status.push(new Status.Position(dialogIdentifier, getCurrentViewId(exec)));
       
        return exec;
       
    }
View Full Code Here


     
      assert context != null;
      assert exec != null;
     
      // TODO: Test this
      Status status = (Status) context.getExternalContext().getSessionMap().
      get(Globals.STATUS);
      if (exec.getCurrentStatus().isFinal()) {
            setDialogExecutor(context, null);
            status.pop();
      } else {
            status.peek().setStateName(getCurrentViewId(exec));
      }
    }
View Full Code Here

        // AbstractFacesBean subtypes in the usecases war for the proof of
        // concept).
        // Ignoring STATUS_PARAM since usecases war doesn't use it for the
        // log on / edit profile dialogs.
        // TODO: The next line should be Dialog Manager implementation agnostic
        Status status =  new org.apache.shale.dialog.impl.StatusImpl();

        context.getExternalContext().getSessionMap().put(Globals.STATUS, status);
        status.push(new Status.Position(dialogIdentifier, getCurrentViewId(exec)));
       
        return exec;
       
    }
View Full Code Here

     
      assert context != null;
      assert exec != null;
     
      // TODO: Test this
      Status status = (Status) context.getExternalContext().getSessionMap().
      get(Globals.STATUS);
      if (exec.getCurrentStatus().isFinal()) {
            setDialogExecutor(context, null);
            status.pop();
      } else {
            status.peek().setStateName(getCurrentViewId(exec));
      }
    }
View Full Code Here

        // AbstractFacesBean subtypes in the usecases war for the proof of
        // concept).
        // Ignoring STATUS_PARAM since usecases war doesn't use it for the
        // log on / edit profile dialogs.
        // TODO: The next line should be Dialog Manager implementation agnostic
        Status status =  new org.apache.shale.dialog.impl.StatusImpl();

        context.getExternalContext().getSessionMap().put(Globals.STATUS, status);
        status.push(new Status.Position(dialogIdentifier, getCurrentViewId(exec)));
       
        return exec;
       
    }
View Full Code Here

     
      assert context != null;
      assert exec != null;
     
      // TODO: Test this
      Status status = (Status) context.getExternalContext().getSessionMap().
      get(Globals.STATUS);
      if (exec.getCurrentStatus().isFinal()) {
            setDialogExecutor(context, null);
            status.pop();
      } else {
            status.peek().setStateName(getCurrentViewId(exec));
      }
    }
View Full Code Here

TOP

Related Classes of org.apache.shale.dialog.Status

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.