Package org.jbpm.pvm.internal.wire.descriptor

Examples of org.jbpm.pvm.internal.wire.descriptor.ProcessEngineDescriptor


    super("process-engine-ref");
  }

  public Object parse(Element element, Parse parse, Parser parser) {
    ProcessEngine processEngine = (ProcessEngine) parse.findObject(ProcessEngine.class);
    return new ProcessEngineDescriptor(processEngine);
  }
View Full Code Here


    super("process-engine-ref");
  }

  public Object parse(Element element, Parse parse, Parser parser) {
    ConfigurationImpl configuration = (ConfigurationImpl) parse.contextStackFind(ConfigurationImpl.class);
    return new ProcessEngineDescriptor(configuration);
  }
View Full Code Here

TOP

Related Classes of org.jbpm.pvm.internal.wire.descriptor.ProcessEngineDescriptor

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.