getting started with ecocash integration

This commit is contained in:
2025-07-11 19:34:06 +02:00
parent 1ba7a8cda4
commit 0a00c4d3ca

View File

@@ -0,0 +1,24 @@
package zw.qantra.tm.domain.services.processors.payments;
import org.springframework.stereotype.Service;
import zw.qantra.tm.domain.models.Transaction;
import zw.qantra.tm.domain.services.processors.TransactionProcessorInterface;
@Service("REQUEST_ECOCASH_REMOTE")
public class EcocashRemotePaymentProcessor implements TransactionProcessorInterface {
@Override
public Object process(Transaction transaction) throws Exception {
return transaction;
}
@Override
public Object reverse(Transaction transaction) {
return transaction;
}
@Override
public Object poll(Transaction transaction) throws Exception {
return transaction;
}
}