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

View file

@ -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);
}
}