Package org.dbunit.database

Examples of org.dbunit.database.PrimaryKeyFilter$PkTableMap


   *            that table)
   */
  public ImportedAndExportedKeysSearchCallbackFilteredByPKs(IDatabaseConnection connection, PkTableMap allowedPKs)
  {
    super(connection);
    this.pksFilter = new PrimaryKeyFilter(connection, allowedPKs, true);
  }
View Full Code Here


   * @param allowedPKs map of allowed rows, based on the primary keys (key is the name
   * of a table; value is a Set with allowed primary keys for that table)
   */
  public ImportedKeysSearchCallbackFilteredByPKs(IDatabaseConnection connection, PkTableMap allowedPKs) {
    super(connection);
    this.pksFilter = new PrimaryKeyFilter(connection, allowedPKs, false);
  }
View Full Code Here

   * @param allowedPKs map of allowed rows, based on the primary keys (key is the name
   * of a table; value is a Set with allowed primary keys for that table)
   */
  public ImportedAndExportedKeysSearchCallbackFilteredByPKs(IDatabaseConnection connection, Map allowedPKs) {
    super(connection);
    this.pksFilter = new PrimaryKeyFilter(connection, allowedPKs, true );
  }
View Full Code Here

   * @param allowedPKs map of allowed rows, based on the primary keys (key is the name
   * of a table; value is a Set with allowed primary keys for that table)
   */
  public ImportedKeysSearchCallbackFilteredByPKs(IDatabaseConnection connection, Map allowedPKs) {
    super(connection);
    this.pksFilter = new PrimaryKeyFilter(connection, allowedPKs, false);
  }
View Full Code Here

TOP

Related Classes of org.dbunit.database.PrimaryKeyFilter$PkTableMap

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.