1
0
mirror of https://github.com/google/nomulus synced 2026-05-23 16:21:55 +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

@@ -55,4 +55,9 @@ public class CustomLogicFactory {
EppInput eppInput, SessionMetadata sessionMetadata) {
return new DomainRenewFlowCustomLogic(eppInput, sessionMetadata);
}
public DomainDeleteFlowCustomLogic forDomainDeleteFlow(
EppInput eppInput, SessionMetadata sessionMetadata) {
return new DomainDeleteFlowCustomLogic(eppInput, sessionMetadata);
}
}