From bd8f9e41f14bc725409d9b6263b108275a1da817 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Sat, 11 Jul 2026 22:30:17 +0000 Subject: [PATCH 1/9] forge: open work branch for BAIS-MULTI-1783809014-attempt-1 --- .forge/BAIS-MULTI-1783809014-attempt-1.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .forge/BAIS-MULTI-1783809014-attempt-1.md diff --git a/.forge/BAIS-MULTI-1783809014-attempt-1.md b/.forge/BAIS-MULTI-1783809014-attempt-1.md new file mode 100644 index 0000000..f48d0ff --- /dev/null +++ b/.forge/BAIS-MULTI-1783809014-attempt-1.md @@ -0,0 +1,3 @@ +# BAIS-MULTI-1783809014-attempt-1 + +Forge 이슈 작업 브랜치 `forge/BAIS-MULTI-1783809014-attempt-1`. -- 2.49.1 From f559e794f48d32e051737419c34b2840eb1e88cb Mon Sep 17 00:00:00 2001 From: forge-bot Date: Sat, 11 Jul 2026 22:30:35 +0000 Subject: [PATCH 2/9] =?UTF-8?q?BAIS=20payments=20=EB=A9=80=ED=8B=B0?= =?UTF-8?q?=EB=AA=A8=EB=93=88=20=EC=B5=9C=EC=86=8C=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(BAIS-MULTI-1783809014)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..a80bfb0 --- /dev/null +++ b/pom.xml @@ -0,0 +1,20 @@ + + 4.0.0 + + com.klaro.bais + bais-platform + 1.0-SNAPSHOT + pom + + + services/payments + + + + org.springframework.boot + spring-boot-starter-parent + 3.5.14 + + \ No newline at end of file -- 2.49.1 From c9b0767b4b238377bca8d8b472b67b4c81c593f2 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Sat, 11 Jul 2026 22:30:36 +0000 Subject: [PATCH 3/9] =?UTF-8?q?BAIS=20payments=20=EB=A9=80=ED=8B=B0?= =?UTF-8?q?=EB=AA=A8=EB=93=88=20=EC=B5=9C=EC=86=8C=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(BAIS-MULTI-1783809014)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/payments/pom.xml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 services/payments/pom.xml diff --git a/services/payments/pom.xml b/services/payments/pom.xml new file mode 100644 index 0000000..d66f424 --- /dev/null +++ b/services/payments/pom.xml @@ -0,0 +1,22 @@ + + 4.0.0 + + + com.klaro.bais + bais-platform + 1.0-SNAPSHOT + ../../pom.xml + + + payments + + + + org.apache.commons + commons-lang3 + 3.18.0 + + + \ No newline at end of file -- 2.49.1 From bb8d0a41e2c5d5ad7ad1f6cf458c211ca6b27268 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Sat, 11 Jul 2026 22:30:38 +0000 Subject: [PATCH 4/9] =?UTF-8?q?BAIS=20payments=20=EB=A9=80=ED=8B=B0?= =?UTF-8?q?=EB=AA=A8=EB=93=88=20=EC=B5=9C=EC=86=8C=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(BAIS-MULTI-1783809014)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../klaro/bais/payments/PaymentReferenceService.java | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java diff --git a/services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java b/services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java new file mode 100644 index 0000000..6dc5371 --- /dev/null +++ b/services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java @@ -0,0 +1,10 @@ +package com.klaro.bais.payments; + +import org.apache.commons.lang3.StringUtils; + +public class PaymentReferenceService { + + public String normalize(String input) { + return StringUtils.trimToEmpty(input); + } +} \ No newline at end of file -- 2.49.1 From c7e22c4b1e33d0d05dda962a787c79f4788e8810 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Sat, 11 Jul 2026 22:30:40 +0000 Subject: [PATCH 5/9] =?UTF-8?q?BAIS=20payments=20=EB=A9=80=ED=8B=B0?= =?UTF-8?q?=EB=AA=A8=EB=93=88=20=EC=B5=9C=EC=86=8C=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(BAIS-MULTI-1783809014)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../payments/PaymentReferenceServiceTest.java | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java diff --git a/services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java b/services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java new file mode 100644 index 0000000..ee8e097 --- /dev/null +++ b/services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java @@ -0,0 +1,24 @@ +package com.klaro.bais.payments; + +import org.junit.jupiter.api.Test; +import static org.junit.jupiter.api.Assertions.assertEquals; + +public class PaymentReferenceServiceTest { + + private final PaymentReferenceService service = new PaymentReferenceService(); + + @Test + public void testNormalize_null() { + assertEquals("", service.normalize(null)); + } + + @Test + public void testNormalize_empty() { + assertEquals("", service.normalize(" ")); + } + + @Test + public void testNormalize_normalString() { + assertEquals("validString", service.normalize(" validString ")); + } +} -- 2.49.1 From 679302489d74dc7a0c805c9e9de361756411c490 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Sat, 11 Jul 2026 22:32:59 +0000 Subject: [PATCH 6/9] =?UTF-8?q?BAIS=20payments=20=EB=A9=80=ED=8B=B0?= =?UTF-8?q?=EB=AA=A8=EB=93=88=20=EC=B5=9C=EC=86=8C=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(1/2)=20(BAIS-MULTI-1783809014)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index a80bfb0..3ecadaf 100644 --- a/pom.xml +++ b/pom.xml @@ -8,13 +8,13 @@ 1.0-SNAPSHOT pom - - services/payments - - org.springframework.boot spring-boot-starter-parent 3.5.14 + + + services/payments + \ No newline at end of file -- 2.49.1 From aa99ddf61dc02d27e1054990e3e2150bce3c025b Mon Sep 17 00:00:00 2001 From: forge-bot Date: Sat, 11 Jul 2026 22:33:00 +0000 Subject: [PATCH 7/9] =?UTF-8?q?BAIS=20payments=20=EB=A9=80=ED=8B=B0?= =?UTF-8?q?=EB=AA=A8=EB=93=88=20=EC=B5=9C=EC=86=8C=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(1/2)=20(BAIS-MULTI-1783809014)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/payments/pom.xml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/services/payments/pom.xml b/services/payments/pom.xml index d66f424..fb939fe 100644 --- a/services/payments/pom.xml +++ b/services/payments/pom.xml @@ -4,14 +4,10 @@ 4.0.0 - com.klaro.bais - bais-platform - 1.0-SNAPSHOT ../../pom.xml payments - org.apache.commons -- 2.49.1 From fc5d1963fd596b39faf6801cad2791c1d7dc9551 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Sat, 11 Jul 2026 22:33:01 +0000 Subject: [PATCH 8/9] =?UTF-8?q?BAIS=20payments=20=EB=A9=80=ED=8B=B0?= =?UTF-8?q?=EB=AA=A8=EB=93=88=20=EC=B5=9C=EC=86=8C=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(1/2)=20(BAIS-MULTI-1783809014)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/klaro/bais/payments/PaymentReferenceService.java | 1 - 1 file changed, 1 deletion(-) diff --git a/services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java b/services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java index 6dc5371..a349b69 100644 --- a/services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java +++ b/services/payments/src/main/java/com/klaro/bais/payments/PaymentReferenceService.java @@ -3,7 +3,6 @@ package com.klaro.bais.payments; import org.apache.commons.lang3.StringUtils; public class PaymentReferenceService { - public String normalize(String input) { return StringUtils.trimToEmpty(input); } -- 2.49.1 From 8094352a3d5fd9dc48d705b198cbd50b3c7bd763 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Sat, 11 Jul 2026 22:33:03 +0000 Subject: [PATCH 9/9] =?UTF-8?q?BAIS=20payments=20=EB=A9=80=ED=8B=B0?= =?UTF-8?q?=EB=AA=A8=EB=93=88=20=EC=B5=9C=EC=86=8C=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?(1/2)=20(BAIS-MULTI-1783809014)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../payments/PaymentReferenceServiceTest.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java b/services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java index ee8e097..87bb520 100644 --- a/services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java +++ b/services/payments/src/test/java/com/klaro/bais/payments/PaymentReferenceServiceTest.java @@ -1,24 +1,24 @@ package com.klaro.bais.payments; -import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; -public class PaymentReferenceServiceTest { +import org.junit.jupiter.api.Test; +class PaymentReferenceServiceTest { private final PaymentReferenceService service = new PaymentReferenceService(); @Test - public void testNormalize_null() { + void testNormalize_NullInput() { assertEquals("", service.normalize(null)); } @Test - public void testNormalize_empty() { - assertEquals("", service.normalize(" ")); + void testNormalize_EmptyInput() { + assertEquals("", service.normalize(" ")); } @Test - public void testNormalize_normalString() { - assertEquals("validString", service.normalize(" validString ")); + void testNormalize_ValidInput() { + assertEquals("valid input", service.normalize(" valid input " )); } -} +} \ No newline at end of file -- 2.49.1