Package org.openntf.domino

Examples of org.openntf.domino.DocumentCollection.FTSearch()


   * @since org.openntf.domino 1.0.0
   */
  public void processSince(final Database sourceDb, final Date sinceDate, final String formName) {
    DateTime dt = sourceDb.getAncestorSession().createDateTime(sinceDate);
    DocumentCollection sourceCollection = sourceDb.getModifiedDocuments(dt, ModifiedDocClass.DATA);
    sourceCollection.FTSearch("[Form] = \"" + formName + "\"");
    process(sourceCollection);
  }

  /**
   * Process a specific DocumentCollection.
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.