Examples of FlowExecutionKey


Examples of org.springframework.webflow.execution.FlowExecutionKey

  public void render() throws IOException {
    Map<String, Object> model = new HashMap<String, Object>();
    model.putAll(flowScopes());
    exposeBindingModel(model);
    model.put("flowRequestContext", requestContext);
    FlowExecutionKey key = requestContext.getFlowExecutionContext().getKey();
    if (key != null) {
      model.put("flowExecutionKey", requestContext.getFlowExecutionContext().getKey().toString());
      model.put("flowExecutionUrl", requestContext.getFlowExecutionUrl());
    }
    model.put("currentUser", requestContext.getExternalContext().getCurrentUser());
View Full Code Here

Examples of org.springframework.webflow.execution.FlowExecutionKey

    try {
      if (logger.isDebugEnabled()) {
        logger.debug("Resuming flow execution with key '" + flowExecutionKey);
      }
      ExternalContextHolder.setExternalContext(context);
      FlowExecutionKey key = executionRepository.parseFlowExecutionKey(flowExecutionKey);
      FlowExecutionLock lock = executionRepository.getLock(key);
      lock.lock();
      try {
        FlowExecution flowExecution = executionRepository.getFlowExecution(key);
        flowExecution.resume(context);
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.