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

io.ebean.config.dbplatform.SqlLimitResponse Maven / Gradle / Ivy

There is a newer version: 15.8.1
Show newest version
package io.ebean.config.dbplatform;

/**
 * The resulting SQL from a SqlLimit process.
 */
public class SqlLimitResponse {

  final String sql;

  /**
   * Create the response.
   */
  public SqlLimitResponse(String sql) {
    this.sql = sql;
  }

  /**
   * The final query sql with SQL limit statements added.
   */
  public String getSql() {
    return sql;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy