removed SDF_01 & SDF_08
This commit is contained in:
parent
33785cfac0
commit
34cfaa74c8
3 changed files with 3 additions and 3 deletions
|
|
@ -249,7 +249,7 @@ public class IntermediateMkrSessionStateMachineConfig
|
|||
.guard(new SdfSetGuard(sdfs))
|
||||
.action(againRevise);
|
||||
|
||||
for (var event : EnumSet.of(SsnEvent.SDF_01, SsnEvent.SDF_57, SsnEvent.SDF_04)) {
|
||||
for (var event : sdfs) {
|
||||
transitions
|
||||
.withInternal()
|
||||
.source(TaskType.PSEUDO_waitSdfAfterPaymentInstructions)
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ public class ReturnDepositSessionStateMachineConfig
|
|||
.target(TaskType.FinishingSession)
|
||||
.guard(new SdfSetGuard(sdfs))
|
||||
.action(finishingSessionAction);
|
||||
for (var event: EnumSet.of(SsnEvent.SDF_01, SsnEvent.SDF_57, SsnEvent.SDF_04)) {
|
||||
for (var event: sdfs) {
|
||||
transitions
|
||||
.withInternal()
|
||||
.source(TaskType.PSEUDO_waitSdfAfterPaymentInstructions)
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public class SdfUnitSetGuard implements Guard<TaskType, SsnEvent> {
|
|||
.stream()
|
||||
.allMatch(was::apply);
|
||||
} else {
|
||||
everySdfConditionMet = Stream.of(SsnEvent.SDF_04, SsnEvent.SDF_01, SsnEvent.SDF_57)
|
||||
everySdfConditionMet = Stream.of(SsnEvent.SDF_04, SsnEvent.SDF_57)
|
||||
.allMatch(was::apply);
|
||||
}
|
||||
if (everySdfConditionMet) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue