fix states collection
This commit is contained in:
parent
2a2c1f0c2b
commit
db9963b337
8 changed files with 15 additions and 8 deletions
|
|
@ -132,9 +132,11 @@ public class CurrencySessionStateMachineConfig extends EnumStateMachineConfigure
|
||||||
TaskType.InspectionObligations,
|
TaskType.InspectionObligations,
|
||||||
TaskType.FormingPaymentInstruction,
|
TaskType.FormingPaymentInstruction,
|
||||||
TaskType.FinishingSession,
|
TaskType.FinishingSession,
|
||||||
|
TaskType.AgainRevise,
|
||||||
TaskType.EndStageNotification,
|
TaskType.EndStageNotification,
|
||||||
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
||||||
TaskType.PSEUDO_waitAfterObligationAdmissionError
|
TaskType.PSEUDO_waitAfterObligationAdmissionError,
|
||||||
|
TaskType.PSEUDO_waitSdfAfterAgainRevise
|
||||||
)))
|
)))
|
||||||
.end(TaskType.EndStageNotification);
|
.end(TaskType.EndStageNotification);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -147,7 +147,8 @@ public class IntermediateMkrSessionStateMachineConfig
|
||||||
TaskType.FinishingSession,
|
TaskType.FinishingSession,
|
||||||
TaskType.EndStageNotification,
|
TaskType.EndStageNotification,
|
||||||
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
||||||
TaskType.PSEUDO_waitAfterObligationAdmissionError
|
TaskType.PSEUDO_waitAfterObligationAdmissionError,
|
||||||
|
TaskType.PSEUDO_waitSdfAfterAgainRevise
|
||||||
)))
|
)))
|
||||||
.end(TaskType.EndStageNotification);
|
.end(TaskType.EndStageNotification);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -119,7 +119,8 @@ public class PaymSessionStateMachineConfig extends EnumStateMachineConfigurerAda
|
||||||
TaskType.FormingPaymentInstruction,
|
TaskType.FormingPaymentInstruction,
|
||||||
TaskType.FinishingSession,
|
TaskType.FinishingSession,
|
||||||
TaskType.EndStageNotification,
|
TaskType.EndStageNotification,
|
||||||
TaskType.PSEUDO_waitAfterObligationAdmissionError
|
TaskType.PSEUDO_waitAfterObligationAdmissionError,
|
||||||
|
TaskType.AgainRevise
|
||||||
)))
|
)))
|
||||||
.end(TaskType.EndStageNotification);
|
.end(TaskType.EndStageNotification);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,8 @@ public class PrepSessionStateMachineConfig extends EnumStateMachineConfigurerAda
|
||||||
TaskType.DealsPrepare,
|
TaskType.DealsPrepare,
|
||||||
TaskType.RequirementsAndObligationsCreate,
|
TaskType.RequirementsAndObligationsCreate,
|
||||||
TaskType.ObligationsAdmission,
|
TaskType.ObligationsAdmission,
|
||||||
TaskType.PSEUDO_waitAfterObligationAdmissionError
|
TaskType.PSEUDO_waitAfterObligationAdmissionError,
|
||||||
|
TaskType.PSEUDO_end
|
||||||
)))
|
)))
|
||||||
.end(TaskType.PSEUDO_end);
|
.end(TaskType.PSEUDO_end);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -141,7 +141,8 @@ public class PrimaryAuctionB0SessionStateMachineConfig
|
||||||
TaskType.FinishingSession,
|
TaskType.FinishingSession,
|
||||||
TaskType.EndStageNotification,
|
TaskType.EndStageNotification,
|
||||||
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
||||||
TaskType.PSEUDO_waitAfterObligationAdmissionError
|
TaskType.PSEUDO_waitAfterObligationAdmissionError,
|
||||||
|
TaskType.PSEUDO_waitSdfAfterAgainRevise
|
||||||
)))
|
)))
|
||||||
.end(TaskType.EndStageNotification);
|
.end(TaskType.EndStageNotification);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -141,7 +141,8 @@ public class PrimaryAuctionT0SessionStateMachineConfig
|
||||||
TaskType.FinishingSession,
|
TaskType.FinishingSession,
|
||||||
TaskType.EndStageNotification,
|
TaskType.EndStageNotification,
|
||||||
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
||||||
TaskType.PSEUDO_waitAfterObligationAdmissionError
|
TaskType.PSEUDO_waitAfterObligationAdmissionError,
|
||||||
|
TaskType.PSEUDO_waitSdfAfterAgainRevise
|
||||||
)))
|
)))
|
||||||
.end(TaskType.EndStageNotification);
|
.end(TaskType.EndStageNotification);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -141,7 +141,8 @@ public class SecondaryAuctionT0SessionStateMachineConfig
|
||||||
TaskType.FinishingSession,
|
TaskType.FinishingSession,
|
||||||
TaskType.EndStageNotification,
|
TaskType.EndStageNotification,
|
||||||
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
||||||
TaskType.PSEUDO_waitAfterObligationAdmissionError
|
TaskType.PSEUDO_waitAfterObligationAdmissionError,
|
||||||
|
TaskType.PSEUDO_waitSdfAfterAgainRevise
|
||||||
)))
|
)))
|
||||||
.end(TaskType.EndStageNotification);
|
.end(TaskType.EndStageNotification);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -149,7 +149,6 @@ public class UnitedSessionStateMachineConfig
|
||||||
TaskType.EndStageNotification,
|
TaskType.EndStageNotification,
|
||||||
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
TaskType.PSEUDO_waitSdfAfterPaymentInstructions,
|
||||||
TaskType.PSEUDO_waitAfterObligationAdmissionError,
|
TaskType.PSEUDO_waitAfterObligationAdmissionError,
|
||||||
TaskType.EndStageNotification,
|
|
||||||
TaskType.AgainRevise,
|
TaskType.AgainRevise,
|
||||||
TaskType.PSEUDO_waitSdfAfterAgainRevise
|
TaskType.PSEUDO_waitSdfAfterAgainRevise
|
||||||
)))
|
)))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue