1
0
mirror of https://github.com/google/nomulus synced 2026-07-19 22:42:23 +00:00

Add extensible custom logic to the domain info flow

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=139584129
This commit is contained in:
jianglai
2016-11-18 08:29:47 -08:00
committed by Ben McIlwain
parent 5bac24186f
commit 2d85ec9aa3
4 changed files with 177 additions and 13 deletions
@@ -40,4 +40,9 @@ public class CustomLogicFactory {
EppInput eppInput, SessionMetadata sessionMetadata) {
return new DomainCheckFlowCustomLogic(eppInput, sessionMetadata);
}
public DomainInfoFlowCustomLogic forDomainInfoFlow(
EppInput eppInput, SessionMetadata sessionMetadata) {
return new DomainInfoFlowCustomLogic(eppInput, sessionMetadata);
}
}