|
|
@ -335,14 +335,14 @@ public class FlywayProperties {
|
|
|
|
private Map<String, String> jdbcProperties = new HashMap<>();
|
|
|
|
private Map<String, String> jdbcProperties = new HashMap<>();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Path of the Oracle Kerberos cache file. Requires Flyway Teams.
|
|
|
|
* Path of the Kerberos config file. Requires Flyway Teams.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private String oracleKerberosCacheFile;
|
|
|
|
private String kerberosConfigFile;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Path of the Oracle Kerberos config file. Requires Flyway Teams.
|
|
|
|
* Path of the Oracle Kerberos cache file. Requires Flyway Teams.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private String oracleKerberosConfigFile;
|
|
|
|
private String oracleKerberosCacheFile;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Location of the Oracle Wallet, used to sign-in to the database automatically.
|
|
|
|
* Location of the Oracle Wallet, used to sign-in to the database automatically.
|
|
|
@ -356,6 +356,11 @@ public class FlywayProperties {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private Boolean outputQueryResults;
|
|
|
|
private Boolean outputQueryResults;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Path to the SQL Server Kerberos login file. Requires Flyway Teams.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private String sqlServerKerberosLoginFile;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Whether Flyway should skip executing the contents of the migrations and only update
|
|
|
|
* Whether Flyway should skip executing the contents of the migrations and only update
|
|
|
|
* the schema history table. Requires Flyway teams.
|
|
|
|
* the schema history table. Requires Flyway teams.
|
|
|
@ -856,6 +861,14 @@ public class FlywayProperties {
|
|
|
|
this.jdbcProperties = jdbcProperties;
|
|
|
|
this.jdbcProperties = jdbcProperties;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getKerberosConfigFile() {
|
|
|
|
|
|
|
|
return this.kerberosConfigFile;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setKerberosConfigFile(String kerberosConfigFile) {
|
|
|
|
|
|
|
|
this.kerberosConfigFile = kerberosConfigFile;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getOracleKerberosCacheFile() {
|
|
|
|
public String getOracleKerberosCacheFile() {
|
|
|
|
return this.oracleKerberosCacheFile;
|
|
|
|
return this.oracleKerberosCacheFile;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -864,12 +877,15 @@ public class FlywayProperties {
|
|
|
|
this.oracleKerberosCacheFile = oracleKerberosCacheFile;
|
|
|
|
this.oracleKerberosCacheFile = oracleKerberosCacheFile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@DeprecatedConfigurationProperty(replacement = "spring.flyway.kerberos-config-file")
|
|
|
|
|
|
|
|
@Deprecated
|
|
|
|
public String getOracleKerberosConfigFile() {
|
|
|
|
public String getOracleKerberosConfigFile() {
|
|
|
|
return this.oracleKerberosConfigFile;
|
|
|
|
return getKerberosConfigFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Deprecated
|
|
|
|
public void setOracleKerberosConfigFile(String oracleKerberosConfigFile) {
|
|
|
|
public void setOracleKerberosConfigFile(String oracleKerberosConfigFile) {
|
|
|
|
this.oracleKerberosConfigFile = oracleKerberosConfigFile;
|
|
|
|
setKerberosConfigFile(oracleKerberosConfigFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Boolean getOutputQueryResults() {
|
|
|
|
public Boolean getOutputQueryResults() {
|
|
|
@ -880,6 +896,14 @@ public class FlywayProperties {
|
|
|
|
this.outputQueryResults = outputQueryResults;
|
|
|
|
this.outputQueryResults = outputQueryResults;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getSqlServerKerberosLoginFile() {
|
|
|
|
|
|
|
|
return this.sqlServerKerberosLoginFile;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setSqlServerKerberosLoginFile(String sqlServerKerberosLoginFile) {
|
|
|
|
|
|
|
|
this.sqlServerKerberosLoginFile = sqlServerKerberosLoginFile;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Boolean getSkipExecutingMigrations() {
|
|
|
|
public Boolean getSkipExecutingMigrations() {
|
|
|
|
return this.skipExecutingMigrations;
|
|
|
|
return this.skipExecutingMigrations;
|
|
|
|
}
|
|
|
|
}
|
|
|
|