1
0
mirror of https://github.com/google/nomulus synced 2026-02-05 12:31:15 +00:00

Add extensible custom logic to the domain delete flow

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=140534389
This commit is contained in:
jianglai
2016-11-29 15:19:32 -08:00
committed by Ben McIlwain
parent 6373784858
commit b35ac10b7e
4 changed files with 235 additions and 6 deletions

View File

@@ -52,4 +52,10 @@ public class CustomLogicModule {
CustomLogicFactory factory, EppInput eppInput, SessionMetadata sessionMetadata) {
return factory.forDomainRenewFlow(eppInput, sessionMetadata);
}
@Provides
static DomainDeleteFlowCustomLogic provideDomainDeleteFlowCustomLogic(
CustomLogicFactory factory, EppInput eppInput, SessionMetadata sessionMetadata) {
return factory.forDomainDeleteFlow(eppInput, sessionMetadata);
}
}