BAIS payments 멀티모듈 최소 구현 (BAIS-MULTI-1783812074)

This commit is contained in:
forge-bot 2026-07-11 23:21:54 +00:00
parent f4d6678585
commit 72dd36b928

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);
}
}