001package io.ebean.config.dbplatform;
002
003/**
004 * The resulting SQL from a SqlLimit process.
005 */
006public class SqlLimitResponse {
007
008  final String sql;
009
010  /**
011   * Create the response.
012   */
013  public SqlLimitResponse(String sql) {
014    this.sql = sql;
015  }
016
017  /**
018   * The final query sql with SQL limit statements added.
019   */
020  public String getSql() {
021    return sql;
022  }
023
024}