Package org.openntf.domino.transactions

Examples of org.openntf.domino.transactions.DatabaseTransaction.rollback()


      } else {
        throw new Exception("Now roll back");
      }
    } catch (Exception e) {
      sb.append("Rolling back");
      txn.rollback();
      ExtLibUtil.getViewScope().put("javaTest", sb.toString());
    }
  }

  public static void contactScannerMap() {
View Full Code Here


   */
  @Override
  public void rollback() {
    DatabaseTransaction txn = getTxn();
    if (txn != null) {
      txn.rollback();
      //      setTxn(null);
    }
    clearCache();
    // System.out.println("Transaction rollbacked");
  }
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.