Set version to 1.0.0

This commit is contained in:
dankito 2020-05-13 14:11:25 +02:00
parent 8f0b2411c5
commit 394406c785
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ open class FinTsClient @JvmOverloads constructor(
protected val responseParser: ResponseParser = ResponseParser(),
protected val mt940Parser: IAccountTransactionsParser = Mt940AccountTransactionsParser(),
protected val threadPool: IThreadPool = ThreadPool(),
protected val product: ProductData = ProductData("15E53C26816138699C7B6A3E8", "0.1") // TODO: get version dynamically
protected val product: ProductData = ProductData("15E53C26816138699C7B6A3E8", "1.0.0") // TODO: get version dynamically
) {
companion object {

View File

@ -26,7 +26,7 @@ open class FinTsClientForCustomer @JvmOverloads constructor(
messageBuilder: MessageBuilder = MessageBuilder(),
responseParser: ResponseParser = ResponseParser(),
mt940Parser: IAccountTransactionsParser = Mt940AccountTransactionsParser(),
product: ProductData = ProductData("15E53C26816138699C7B6A3E8", "0.1") // TODO: get version dynamically
product: ProductData = ProductData("15E53C26816138699C7B6A3E8", "1.0.0") // TODO: get version dynamically
) {
protected val client = FinTsClient(callback, base64Service, webClient, messageBuilder, responseParser, mt940Parser, threadPool, product)

View File

@ -38,7 +38,7 @@ class BanksFinTsDetailsRetriever {
private val bankDataMapper = BankDataMapper()
private val product: ProductData = ProductData("15E53C26816138699C7B6A3E8", "0.1") // TODO: get version dynamically
private val product: ProductData = ProductData("15E53C26816138699C7B6A3E8", "1.0.0") // TODO: get version dynamically
private val messageBuilder = MessageBuilder()