Compare commits

..

No commits in common. "b3cb76e77d3deb82fa0676293960246bbf14dd41" and "07672d118996bd5ea12fb636960410b1f8273388" have entirely different histories.

4 changed files with 7 additions and 20 deletions

View File

@ -26,7 +26,7 @@ repositories {
dependencies {
implementation("net.codinux.banking:fints4k:1.0.0-Alpha-13")
implementation("net.codinux.banking:fints4k:1.0.0-Alpha-11")
}
```

View File

@ -1,16 +1,16 @@
// TODO: move to versions.gradle
ext {
appVersionName = "1.0.0-Alpha-14-SNAPSHOT"
appVersionName = '1.0.0-Alpha-13-SNAPSHOT'
/* Test */
assertJVersion = "3.12.2"
assertJVersion = '3.12.2'
mockitoVersion = "2.22.0"
mockitoKotlinVersion = "1.6.0"
mockitoVersion = '2.22.0'
mockitoKotlinVersion = '1.6.0'
logbackVersion = "1.2.3"
logbackVersion = '1.2.3'
}
buildscript {

View File

@ -17,8 +17,6 @@ import net.codinux.banking.fints.response.client.GetAccountTransactionsResponse
import net.codinux.banking.fints.response.segments.AccountType
import net.codinux.banking.fints.response.segments.BankParameters
import net.codinux.banking.fints.util.BicFinder
import net.codinux.log.LogLevel
import net.codinux.log.LoggerFactory
open class FinTsClient(
@ -39,15 +37,6 @@ open class FinTsClient(
protected open val bicFinder = BicFinder()
init {
LoggerFactory.getLogger("net.codinux.banking.fints.log.MessageLogCollector").level = if (config.options.appendFinTsMessagesToLog) {
LogLevel.Debug
} else {
null
}
}
open suspend fun getAccountDataAsync(bankCode: String, loginName: String, password: String): GetAccountDataResponse {
return getAccountDataAsync(GetAccountDataParameter(bankCode, loginName, password))
}

View File

@ -27,12 +27,10 @@ data class FinTsClientOptions(
*/
val removeSensitiveDataFromMessageLog: Boolean = true,
val appendFinTsMessagesToLog: Boolean = false,
val closeDialogs: Boolean = true,
val version: String = "1.0.0", // TODO: get version dynamically
val productName: String = "15E53C26816138699C7B6A3E8" // TODO: extract constant // TODO: get product number for fints4k and Bankmeister (if we stick with that name)
val productName: String = "15E53C26816138699C7B6A3E8"
) {
val product: ProductData by lazy { ProductData(productName, version) }