Package org.jbpm.pvm.internal.tx

Examples of org.jbpm.pvm.internal.tx.JtaTransactionInterceptor


  public JtaTransactionInterceptorBinding() {
    super("jta-transaction-interceptor");
  }

  public Object parse(Element element, Parse parse, Parser parser) {
    JtaTransactionInterceptor jtaTransactionInterceptor = new JtaTransactionInterceptor();
   
    if ( element.hasAttribute("policy")
         && ("requiresNew".equals(element.getAttribute("policy")))
       ) {
      jtaTransactionInterceptor.setPolicy(Policy.REQUIRES_NEW);
    }
   
    return new ProvidedObjectDescriptor(jtaTransactionInterceptor);
  }
View Full Code Here

TOP

Related Classes of org.jbpm.pvm.internal.tx.JtaTransactionInterceptor

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.