BAIS payments 멀티모듈 최소 구현 (BAIS-MAVEN-1783816946)

This commit is contained in:
forge-bot 2026-07-12 00:42:44 +00:00
parent bf53e8ded7
commit 783be35a46

View file

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