Examples of resolveContext()


Examples of org.drools.process.core.Context.resolveContext()

    }

    public Context resolveContext(String contextId, Object param) {
        Context context = getDefaultContext(contextId);
        if (context != null) {
            context = context.resolveContext(param);
            if (context != null) {
                return context;
            }
        }
        return null;
View Full Code Here

Examples of org.drools.process.core.Context.resolveContext()

    }
   
    public Context resolveContext(String contextId, Object param) {
        Context context = getContext(contextId);
        if (context != null) {
            context = context.resolveContext(param);
            if (context != null) {
                return context;
            }
        }
        return ((org.drools.workflow.core.NodeContainer) nodeContainer).resolveContext(contextId, param);
View Full Code Here

Examples of org.gatein.mop.spi.customization.CustomizationContextProvider.resolveContext()

      CustomizationContextProvider provider = resolvers.get(contextType);

      //
      if (provider != null)
      {
         return provider.resolveContext(contextId);
      }

      //
      return null;
   }
View Full Code Here

Examples of org.jbpm.process.core.Context.resolveContext()

    }

    public Context resolveContext(String contextId, Object param) {
        Context context = getDefaultContext(contextId);
        if (context != null) {
          context = context.resolveContext(param);
          if (context != null) {
              return context;
          }
        }
        return super.resolveContext(contextId, param);
View Full Code Here

Examples of org.jbpm.process.core.Context.resolveContext()

    }
   
    public Context resolveContext(String contextId, Object param) {
        Context context = getContext(contextId);
        if (context != null) {
            context = context.resolveContext(param);
            if (context != null) {
                return context;
            }
        }
        return ((org.jbpm.workflow.core.NodeContainer) nodeContainer).resolveContext(contextId, param);
View Full Code Here

Examples of org.jbpm.process.core.Context.resolveContext()

    }

    public Context resolveContext(String contextId, Object param) {
        Context context = getDefaultContext(contextId);
        if (context != null) {
            context = context.resolveContext(param);
            if (context != null) {
                return context;
            }
        }
        return null;
View Full Code Here

Examples of org.jbpm.workflow.core.node.HumanTaskNode.resolveContext()

          "        results = new HashMap<String, Object>();\n" +
          "        // add results here\n";
        }
        for (Map.Entry<String, String> entry: taskNode.getOutMappings().entrySet()) {
          String type = null;
          VariableScope variableScope = (VariableScope) taskNode.resolveContext(VariableScope.VARIABLE_SCOPE, entry.getValue());
          if (variableScope != null) {
            type = variableScope.findVariable(entry.getValue()).getType().getStringType();
          }
          testCode +=
            "        // results.put(\"" + entry.getKey() + "\", value);" + (type == null ? "" : " // type " + type) + "\n";
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.