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

Open
forge-bot wants to merge 5 commits from forge/BAIS-REM-1783820063-attempt-3 into main
Showing only changes of commit 71d3e59ff0 - 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 reference) {
return StringUtils.trimToEmpty(reference);
}
}