All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rapleaf.jack.queries.Deletions Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
package com.rapleaf.jack.queries;

public class Deletions {

  private final int updatedRowCount;

  public Deletions(int updatedRowCount) {
    this.updatedRowCount = updatedRowCount;
  }

  public int getDeletedRowCount() {
    return updatedRowCount;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy