Package br.gov.frameworkdemoiselle.internal.bootstrap

Examples of br.gov.frameworkdemoiselle.internal.bootstrap.TransactionBootstrap


  private Transaction transaction;

  private Transaction getTransaction() {
    if (this.transaction == null) {
      TransactionBootstrap bootstrap = Beans.getReference(TransactionBootstrap.class);
      Class<? extends Transaction> clazz = getConfig().getTransactionClass();

      if (clazz == null) {
        clazz = StrategySelector.getClass(Transaction.class, bootstrap.getCache());
      }

      this.transaction = Beans.getReference(clazz);
    }
View Full Code Here

TOP

Related Classes of br.gov.frameworkdemoiselle.internal.bootstrap.TransactionBootstrap

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.