BAIS payments 멀티모듈 최소 구현 (2/2) (iss-cb58f86e71d9)

This commit is contained in:
forge-bot 2026-07-11 22:35:19 +00:00
parent 7d60985dc8
commit a4bc99c381

View file

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