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

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


    // inject the command executor

    if (element.hasAttribute("command-service")) {
      descriptor.addInjection("commandService",
          new ReferenceDescriptor(element.getAttribute("command-service"))
      );
    } else {
      descriptor.addInjection("commandService",
          new ReferenceDescriptor(CommandService.NAME_TX_REQUIRED_COMMAND_SERVICE)
      );
    }

    if (element.hasAttribute("name")) {
      descriptor.addInjection("name", new StringDescriptor(element.getAttribute("name")));
View Full Code Here

TOP

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

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.