Set version to 1.0.0
This commit is contained in:
parent
8f0b2411c5
commit
394406c785
|
@ -45,7 +45,7 @@ open class FinTsClient @JvmOverloads constructor(
|
||||||
protected val responseParser: ResponseParser = ResponseParser(),
|
protected val responseParser: ResponseParser = ResponseParser(),
|
||||||
protected val mt940Parser: IAccountTransactionsParser = Mt940AccountTransactionsParser(),
|
protected val mt940Parser: IAccountTransactionsParser = Mt940AccountTransactionsParser(),
|
||||||
protected val threadPool: IThreadPool = ThreadPool(),
|
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 {
|
companion object {
|
||||||
|
|
|
@ -26,7 +26,7 @@ open class FinTsClientForCustomer @JvmOverloads constructor(
|
||||||
messageBuilder: MessageBuilder = MessageBuilder(),
|
messageBuilder: MessageBuilder = MessageBuilder(),
|
||||||
responseParser: ResponseParser = ResponseParser(),
|
responseParser: ResponseParser = ResponseParser(),
|
||||||
mt940Parser: IAccountTransactionsParser = Mt940AccountTransactionsParser(),
|
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)
|
protected val client = FinTsClient(callback, base64Service, webClient, messageBuilder, responseParser, mt940Parser, threadPool, product)
|
||||||
|
|
|
@ -38,7 +38,7 @@ class BanksFinTsDetailsRetriever {
|
||||||
|
|
||||||
private val bankDataMapper = BankDataMapper()
|
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()
|
private val messageBuilder = MessageBuilder()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue