From 2d291738c687c0b536f751511e7fb10839ae8fcf Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 17:42:12 +0000 Subject: [PATCH 1/2] forge: open work branch for BAIS-POLICY-1783705261-attempt-2 --- .forge/BAIS-POLICY-1783705261-attempt-2.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .forge/BAIS-POLICY-1783705261-attempt-2.md diff --git a/.forge/BAIS-POLICY-1783705261-attempt-2.md b/.forge/BAIS-POLICY-1783705261-attempt-2.md new file mode 100644 index 0000000..a0f3663 --- /dev/null +++ b/.forge/BAIS-POLICY-1783705261-attempt-2.md @@ -0,0 +1,3 @@ +# BAIS-POLICY-1783705261-attempt-2 + +Forge 이슈 작업 브랜치 `forge/BAIS-POLICY-1783705261-attempt-2`. From 2891cd2710d07cd938aac4a3f643769d7c81d231 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Fri, 10 Jul 2026 17:42:21 +0000 Subject: [PATCH 2/2] =?UTF-8?q?PaymentService=20=EC=A0=95=EC=B1=85=20?= =?UTF-8?q?=EA=B8=B0=EB=B0=98=20=EC=A0=84=ED=99=98=20(BAIS-POLICY-17837052?= =?UTF-8?q?61)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/example/baispolicy/PaymentService.java | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/main/java/com/example/baispolicy/PaymentService.java diff --git a/src/main/java/com/example/baispolicy/PaymentService.java b/src/main/java/com/example/baispolicy/PaymentService.java new file mode 100644 index 0000000..55047c9 --- /dev/null +++ b/src/main/java/com/example/baispolicy/PaymentService.java @@ -0,0 +1,10 @@ +package com.example.baispolicy; + +public class PaymentService { + public String approve(String transactionId) { + if (transactionId == null || transactionId.isBlank()) { + throw new IllegalArgumentException("transactionId cannot be blank"); + } + return "APPROVED:" + transactionId; + } +} \ No newline at end of file