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

Open
forge-bot wants to merge 5 commits from forge/BAIS-MAVEN-1783816946-attempt-1 into main
Showing only changes of commit 783be35a46 - 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);
}
}