⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 onevent.java

📁 jbpm-bpel-1.1.Beta3 JBoss jBPM Starters Kit  是一个综合包
💻 JAVA
字号:
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2005, JBoss Inc., and individual contributors as indicated
 * by the @authors tag.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the JBPM BPEL PUBLIC LICENSE AGREEMENT as
 * published by JBoss Inc.; either version 1.0 of the License, or
 * (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */
package org.jbpm.bpel.graph.scope;

import java.util.Iterator;
import java.util.Map;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import org.jbpm.bpel.graph.exe.EventInstance;
import org.jbpm.bpel.graph.exe.ScopeInstance;
import org.jbpm.bpel.graph.exe.state.ActiveState;
import org.jbpm.bpel.integration.def.CorrelationSetDefinition;
import org.jbpm.bpel.integration.def.InboundMessageActivity;
import org.jbpm.bpel.integration.def.Receiver;
import org.jbpm.bpel.variable.def.VariableDefinition;
import org.jbpm.graph.exe.ExecutionContext;
import org.jbpm.graph.exe.Token;

/**
 * @author Juan Cantu
 * @version $Revision: 1.3 $ $Date: 2006/10/29 06:13:41 $
 */
public class OnEvent extends ScopeHandler implements InboundMessageActivity {

  private Receiver receiver;
  private VariableDefinition variable;
  private Map correlationSets;

  private static final Log log = LogFactory.getLog(OnEvent.class);
  private static final long serialVersionUID = 1L;

  public void messageReceived(Receiver receiver, Token token) {
    ScopeInstance scopeInstance = Scope.getInstance(token);
    if (!scopeInstance.getState().equals(
        ActiveState.PERFORMING_PRIMARY_ACTIVITY)) {
      log.debug("message refused, scope no longer in normal processing state: "
          + "token="
          + token
          + ", scope="
          + scopeInstance);
      return;
    }
    Token child = scopeInstance.createEventToken();
    // create the event instance
    EventInstance.create(scope, child);
    // if this handler has a local variable definition, create the instance
    if (variable != null)
      variable.createInstance(token);

    // if this handler has local correlation sets, instantiate them
    if (correlationSets != null) {
      Iterator correlationSetIt = correlationSets.values().iterator();
      while (correlationSetIt.hasNext()) {
        CorrelationSetDefinition correlationSet = (CorrelationSetDefinition) correlationSetIt.next();
        correlationSet.createInstance(token);
      }
    }
    // execute the event activity
    execute(new ExecutionContext(child));
  }

  // CompositeActivity override
  // //////////////////////////////////////////////////////////////

  public VariableDefinition findVariable(String varName) {
    return variable != null && variable.getName().equals(varName) ? variable
        : super.findVariable(varName);
  }

  public Receiver getReceiver() {
    return receiver;
  }

  public void setReceiver(Receiver receiver) {
    this.receiver = receiver;
    receiver.setInboundMessageActivity(this);
  }

  public VariableDefinition getVariableDefinition() {
    return variable;
  }

  public void setVariableDefinition(VariableDefinition variable) {
    this.variable = variable;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -