Interface FlywayConnectionDetails

All Superinterfaces:
ConnectionDetails

public interface FlywayConnectionDetails extends ConnectionDetails
Details required for Flyway to establish a connection to an SQL service using JDBC.
Since:
3.1.0
Author:
Andy Wilkinson
  • Method Details

    • getUsername

      String getUsername()
      Username for the database.
      Returns:
      the username for the database
    • getPassword

      String getPassword()
      Password for the database.
      Returns:
      the password for the database
    • getJdbcUrl

      String getJdbcUrl()
      JDBC URL for the database.
      Returns:
      the JDBC URL for the database
    • getDriverClassName

      default String getDriverClassName()
      The name of the JDBC driver class. Defaults to the class name of the driver specified in the JDBC URL.
      Returns:
      the JDBC driver class name
      See Also: