BAIS payments 멀티모듈 최소 구현 #3

Merged
forge-bot merged 5 commits from forge/BAIS-CTX-1783821073-attempt-4 into main 2026-07-12 01:58:06 +00:00
Showing only changes of commit 20ea4732a7 - Show all commits

View file

@ -0,0 +1,9 @@
package com.klaro.bais.payments;
import org.apache.commons.lang3.StringUtils;
public class PaymentReferenceService {
public String normalize(String input) {
return StringUtils.trimToEmpty(input);
}
}