Polishing

This commit is contained in:
Sam Brannen
2019-09-12 11:35:30 +02:00
parent 30cff46e7f
commit 8f38f5c17a
2 changed files with 12 additions and 4 deletions

View File

@@ -130,6 +130,7 @@ class MergedSqlConfig {
}
/**
* Get the bean name of the {@link javax.sql.DataSource}.
* @see SqlConfig#dataSource()
*/
String getDataSource() {
@@ -137,6 +138,7 @@ class MergedSqlConfig {
}
/**
* Get the bean name of the {@link org.springframework.transaction.PlatformTransactionManager}.
* @see SqlConfig#transactionManager()
*/
String getTransactionManager() {
@@ -144,6 +146,7 @@ class MergedSqlConfig {
}
/**
* Get the {@link TransactionMode}.
* @see SqlConfig#transactionMode()
*/
TransactionMode getTransactionMode() {
@@ -151,6 +154,8 @@ class MergedSqlConfig {
}
/**
* Get the encoding for the SQL scripts, if different from the platform
* encoding.
* @see SqlConfig#encoding()
*/
String getEncoding() {
@@ -158,6 +163,8 @@ class MergedSqlConfig {
}
/**
* Get the character string used to separate individual statements within the
* SQL scripts.
* @see SqlConfig#separator()
*/
String getSeparator() {
@@ -165,6 +172,7 @@ class MergedSqlConfig {
}
/**
* Get the prefixes that identify single-line comments within the SQL scripts.
* @see SqlConfig#commentPrefixes()
* @since 5.2
*/
@@ -173,6 +181,7 @@ class MergedSqlConfig {
}
/**
* Get the start delimiter that identifies block comments within the SQL scripts.
* @see SqlConfig#blockCommentStartDelimiter()
*/
String getBlockCommentStartDelimiter() {
@@ -180,6 +189,7 @@ class MergedSqlConfig {
}
/**
* Get the end delimiter that identifies block comments within the SQL scripts.
* @see SqlConfig#blockCommentEndDelimiter()
*/
String getBlockCommentEndDelimiter() {
@@ -187,6 +197,7 @@ class MergedSqlConfig {
}
/**
* Get the {@link ErrorMode}.
* @see SqlConfig#errorMode()
*/
ErrorMode getErrorMode() {