Skip to content

Commit

Permalink
hbci support raw payment types FUTURE_SINGLE_PAYMENT & FUTURE_BULK_PA…
Browse files Browse the repository at this point in the history
…YMENT
  • Loading branch information
age-77 committed Feb 10, 2022
1 parent 93b327e commit 918f0bd
Showing 1 changed file with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@
import de.adorsys.multibanking.domain.transaction.RawSepaPayment;
import de.adorsys.multibanking.hbci.HbciBpdCacheHolder;
import org.apache.commons.lang3.math.NumberUtils;
import org.kapott.hbci.GV.GVDauerSEPANew;
import org.kapott.hbci.GV.GVInstantUebSEPA;
import org.kapott.hbci.GV.GVRawSEPA;
import org.kapott.hbci.GV.GVUebSEPA;
import org.kapott.hbci.GV.*;
import org.kapott.hbci.GV.parsers.ISEPAParser;
import org.kapott.hbci.GV.parsers.SEPAParserFactory;
import org.kapott.hbci.GV_Result.HBCIJobResult;
Expand Down Expand Up @@ -61,11 +58,17 @@ GVRawSEPA createHbciJob() {
case SINGLE_PAYMENT:
jobName = GVUebSEPA.getLowlevelName();
break;
case FUTURE_SINGLE_PAYMENT:
jobName = GVTermUebSEPA.getLowlevelName();
break;
case INSTANT_PAYMENT:
jobName = GVInstantUebSEPA.getLowlevelName();
break;
case BULK_PAYMENT:
jobName = "SammelUebSEPA";
jobName = GVMultiUebSEPA.getLowlevelName();
break;
case FUTURE_BULK_PAYMENT:
jobName = GVTermMultiUebSEPA.getLowlevelName();
break;
case STANDING_ORDER:
jobName = GVDauerSEPANew.getLowlevelName();
Expand Down

0 comments on commit 918f0bd

Please sign in to comment.