Renamed CreatorParam to EpcQrCodeConfig
This commit is contained in:
parent
06a1ac0b95
commit
93c3b915bf
|
@ -1,7 +1,7 @@
|
|||
package net.codinux.banking.epcqrcode
|
||||
|
||||
|
||||
open class CreatorParam(
|
||||
open class EpcQrCodeConfig(
|
||||
|
||||
var receiverName: String = "",
|
||||
|
|
@ -8,7 +8,7 @@ open class EpcQrCodeCreator {
|
|||
// }
|
||||
|
||||
|
||||
open fun generate(param: CreatorParam): EpcQrCode {
|
||||
open fun generate(param: EpcQrCodeConfig): EpcQrCode {
|
||||
return EpcQrCode(
|
||||
EpcQrCode.ServiceTagDefaultValue,
|
||||
EpcQrCodeVersion.Version2,
|
||||
|
@ -26,7 +26,7 @@ open class EpcQrCodeCreator {
|
|||
)
|
||||
}
|
||||
|
||||
open fun generateAsString(param: CreatorParam): String {
|
||||
open fun generateAsString(param: EpcQrCodeConfig): String {
|
||||
val epcQrCode = generate(param)
|
||||
|
||||
val epcQrCodeBuilder = StringBuilder()
|
||||
|
|
|
@ -20,14 +20,14 @@ class MainActivity : AppCompatActivity() {
|
|||
private fun generateQrCode() {
|
||||
hideKeyboard(edtxtReference)
|
||||
|
||||
val param = CreatorParam(edtxtReceiver.string, edtxtIban.string, edtxtBic.string, map(edtxtAmount.string), edtxtReference.string)
|
||||
val param = EpcQrCodeConfig(edtxtReceiver.string, edtxtIban.string, edtxtBic.string, map(edtxtAmount.string), edtxtReference.string)
|
||||
|
||||
generateQrCodeAsync(param) { createdQrCode ->
|
||||
imgGeneratedQrCode.setImageBitmap(createdQrCode)
|
||||
}
|
||||
}
|
||||
|
||||
private fun generateQrCodeAsync(param: CreatorParam, done: (Bitmap) -> Unit) {
|
||||
private fun generateQrCodeAsync(param: EpcQrCodeConfig, done: (Bitmap) -> Unit) {
|
||||
thread {
|
||||
val density = resources.displayMetrics.density
|
||||
val config = EncodeToQrCodeConfig((EncodeToQrCodeConfig.DefaultWidth * density).toInt(), (EncodeToQrCodeConfig.DefaultHeight * density).toInt())
|
||||
|
|
|
@ -267,7 +267,7 @@ class MainWindow : View(FX.messages["application.title"]) {
|
|||
}
|
||||
|
||||
private fun generateQrCode() {
|
||||
val param = CreatorParam(receiver.value, iban.value, bic.value, map(amount.value), reference.value)
|
||||
val param = EpcQrCodeConfig(receiver.value, iban.value, bic.value, map(amount.value), reference.value)
|
||||
val qrCodeContent = EpcQrCodeCreator().generateAsString(param)
|
||||
|
||||
generatedQrCodeImage.value = generateQrCode(qrCodeContent)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package net.codinux.banking.epcqrcode.rest
|
||||
|
||||
import net.codinux.banking.epcqrcode.CreatorParam
|
||||
import net.codinux.banking.epcqrcode.EpcQrCodeConfig
|
||||
import net.codinux.banking.epcqrcode.EncodeToQrCodeConfig
|
||||
import net.codinux.banking.epcqrcode.EpcQrCodeCreator
|
||||
import net.codinux.banking.epcqrcode.QrCodeGenerator
|
||||
|
@ -31,7 +31,7 @@ class EpcQrCodeResource {
|
|||
@Produces(MediaType.APPLICATION_JSON)
|
||||
fun createEpcQrCode(requestDto: GenerateEpcQrCodeRequestDto): Response {
|
||||
try {
|
||||
val qrCodeContent = epcQrCodeCreator.generateAsString(mapToCreatorParam(requestDto))
|
||||
val qrCodeContent = epcQrCodeCreator.generateAsString(mapToEpcQrCodeConfig(requestDto))
|
||||
val qrCodeBytes = qrCodeGenerator.generateQrCode(qrCodeContent, map(requestDto))
|
||||
|
||||
return Response.ok(GenerateEpcQrCodeResponseDto(qrCodeBytes))
|
||||
|
@ -46,8 +46,8 @@ class EpcQrCodeResource {
|
|||
}
|
||||
}
|
||||
|
||||
private fun mapToCreatorParam(dto: GenerateEpcQrCodeRequestDto): CreatorParam {
|
||||
return CreatorParam(
|
||||
private fun mapToEpcQrCodeConfig(dto: GenerateEpcQrCodeRequestDto): EpcQrCodeConfig {
|
||||
return EpcQrCodeConfig(
|
||||
dto.receiverName,
|
||||
dto.iban,
|
||||
dto.bic,
|
||||
|
|
|
@ -82,7 +82,7 @@ struct ContentView: View {
|
|||
|
||||
private func generateQRCode() {
|
||||
let creator = EpcQrCodeCreator()
|
||||
let param = CreatorParam(receiverName: receiver, iban: iban, bic: bic, amount: map(amount), reference: reference, noteToUser: nil, encoding: .utf8)
|
||||
let param = EpcQrCodeConfig(receiverName: receiver, iban: iban, bic: bic, amount: map(amount), reference: reference, noteToUser: nil, encoding: .utf8)
|
||||
|
||||
let qrCodeContent = creator.generateAsString(param: param)
|
||||
|
||||
|
|
Loading…
Reference in New Issue