Examples of ValueReferencePair


Examples of org.apache.ode.bpel.runtime.BpelRuntimeContext.ValueReferencePair

                reference = fetchVariableData(brc, related, true);
              } catch (FaultException fe) {
                // In this context this is not necessarily a problem, since the assignment may re-init the related var
              }
             
                ValueReferencePair vrp  = brc.writeExtVar(lvar.declaration.extVar.externalVariableId, reference, val);
                commitChanges(brc,related, vrp.reference);
                return vrp.value;
            } catch (ExternalVariableModuleException e) {
                __log.error("External variable initialization error.", e);
                // TODO: need to report this
View Full Code Here

Examples of org.apache.ode.bpel.runtime.BpelRuntimeContext.ValueReferencePair

                reference = fetchVariableData(context, related, true);
            } catch (FaultException fe) {
                // In this context this is not necessarily a problem, since the assignment may re-init the related var
            }

            ValueReferencePair vrp  = context.writeExtVar(var.declaration, reference, value);
            writeVariable(context, related, vrp.reference);
            return vrp.value;
        } else /* normal variable */ {
            __log.debug("Write variable: name="+var.declaration + " value="+DOMUtils.domToString(value));
            return context.writeVariable(var, value);
View Full Code Here

Examples of org.apache.ode.bpel.runtime.BpelRuntimeContext.ValueReferencePair

                reference = fetchVariableData(context, related, true);
            } catch (FaultException fe) {
                // In this context this is not necessarily a problem, since the assignment may re-init the related var
            }

            ValueReferencePair vrp  = context.writeExtVar(var.declaration, reference, value);
            writeVariable(context, related, vrp.reference);
            return vrp.value;
        } else /* normal variable */ {
            if(__log.isDebugEnabled())
                __log.debug("Write variable: name="+var.declaration + " value="+DOMUtils.domToString(value));
View Full Code Here

Examples of org.apache.ode.bpel.runtime.BpelRuntimeContext.ValueReferencePair

                reference = fetchVariableData(context, related, true);
            } catch (FaultException fe) {
                // In this context this is not necessarily a problem, since the assignment may re-init the related var
            }

            ValueReferencePair vrp  = context.writeExtVar(var.declaration, reference, value);
            writeVariable(context, related, vrp.reference);
            return vrp.value;
        } else /* normal variable */ {
            if(__log.isDebugEnabled())
                __log.debug("Write variable: name="+var.declaration + " value="+DOMUtils.domToString(value));
View Full Code Here

Examples of org.apache.ode.bpel.runtime.BpelRuntimeContext.ValueReferencePair

                reference = fetchVariableData(context, related, true);
            } catch (FaultException fe) {
                // In this context this is not necessarily a problem, since the assignment may re-init the related var
            }

            ValueReferencePair vrp  = context.writeExtVar(var.declaration, reference, value);
            writeVariable(context, related, vrp.reference);
            return vrp.value;
        } else /* normal variable */ {
          if(__log.isDebugEnabled())
            __log.debug("Write variable: name="+var.declaration + " value="+DOMUtils.domToString(value));
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.