Package org.apache.ode.bpel.evt

Examples of org.apache.ode.bpel.evt.VariableReadEvent


            ret = ((OConstantVarType) variable.type).getValue();
        } else {
            VariableInstance varInstance = _scopeInstance.resolve(variable);
            if (varInstance == null)
                return null;
            VariableReadEvent vre = new VariableReadEvent();
            vre.setVarName(varInstance.declaration.name);
            sendEvent(vre);
            ret = _scopeInstance.fetchVariableData(_native,varInstance, part, false);
        }
        return ret;
    }
View Full Code Here


      ret = ((OConstantVarType) variable.type).getValue();
    } else {
      VariableInstance varInstance = _scopeInstance.resolve(variable);
      if (varInstance == null)
        return null;
      VariableReadEvent vre = new VariableReadEvent();
      vre.setVarName(varInstance.declaration.name);
      sendEvent(vre);
      ret = _scopeInstance.fetchVariableData(_native,varInstance, part, false);
    }
    return ret;
  }
View Full Code Here

TOP

Related Classes of org.apache.ode.bpel.evt.VariableReadEvent

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.