Renamed Flickercode (German) to FlickerCode (English)
This commit is contained in:
parent
ce39c1cf7d
commit
647f848d5f
|
@ -27,7 +27,7 @@ open class GetAccountDataOptions(
|
|||
* likes to use a different one, she can select another one in EnterTanDialog.
|
||||
*
|
||||
* By default we prefer non visual TanMethods (like AppTan and SMS) over image based TanMethods (like QR-code and
|
||||
* photoTan) and exclude ChipTanUsb, which is not supported by application, and Flickercode, which is hard to
|
||||
* photoTan) and exclude ChipTanUsb, which is not supported by application, and FlickerCode, which is hard to
|
||||
* implement and therefore most applications have not implemented.
|
||||
*
|
||||
* Console apps can only handle non visual TanMethods.
|
||||
|
|
|
@ -64,7 +64,7 @@ open class TransferMoneyRequest(
|
|||
* likes to use a different one, she can select another one in EnterTanDialog.
|
||||
*
|
||||
* By default we prefer non visual TanMethods (like AppTan and SMS) over image based TanMethods (like QR-code and
|
||||
* photoTan) and exclude ChipTanUsb, which is not supported by application, and Flickercode, which is hard to
|
||||
* photoTan) and exclude ChipTanUsb, which is not supported by application, and FlickerCode, which is hard to
|
||||
* implement and therefore most applications have not implemented.
|
||||
*
|
||||
* Console apps can only handle non visual TanMethods.
|
||||
|
|
|
@ -88,7 +88,7 @@ open class TanChallenge(
|
|||
return "$selectedTanMethod $forAction: $messageToShowToUser" + when (type) {
|
||||
TanChallengeType.EnterTan -> ""
|
||||
TanChallengeType.Image -> ", Image: $tanImage"
|
||||
TanChallengeType.Flickercode -> ", FlickerCode: $flickerCode"
|
||||
TanChallengeType.FlickerCode -> ", FlickerCode: $flickerCode"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ package net.codinux.banking.client.model.tan
|
|||
enum class TanChallengeType {
|
||||
Image,
|
||||
|
||||
Flickercode,
|
||||
FlickerCode,
|
||||
|
||||
EnterTan
|
||||
}
|
|
@ -5,7 +5,7 @@ enum class TanMethodType {
|
|||
|
||||
ChipTanManuell,
|
||||
|
||||
ChipTanFlickercode,
|
||||
ChipTanFlickerCode,
|
||||
|
||||
ChipTanUsb,
|
||||
|
||||
|
|
|
@ -329,7 +329,7 @@ open class FinTs4kMapper {
|
|||
|
||||
protected open fun mapTanChallengeType(challenge: net.codinux.banking.fints.model.TanChallenge): TanChallengeType = when {
|
||||
challenge is ImageTanChallenge -> TanChallengeType.Image
|
||||
challenge is FlickerCodeTanChallenge -> TanChallengeType.Flickercode
|
||||
challenge is FlickerCodeTanChallenge -> TanChallengeType.FlickerCode
|
||||
else -> TanChallengeType.EnterTan
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue