Add extra flow logic hook for domain allocation

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=138679232
This commit is contained in:
mountford 2016-11-09 13:41:45 -08:00 committed by Ben McIlwain
parent 218a4b735b
commit 09beacf746
5 changed files with 59 additions and 3 deletions

View file

@ -165,6 +165,18 @@ public class TestExtraLogicManager implements RegistryExtraFlowLogic {
return domainNameToFeeOrCredit(domainName);
}
/** Performs additional tasks required for an allocate command. */
@Override
public void performAdditionalDomainAllocateLogic(
DomainResource domain,
String clientId,
DateTime asOfDate,
int years,
EppInput eppInput,
HistoryEntry historyEntry) throws EppException {
throw new TestExtraLogicManagerSuccessException("allocated");
}
/** Performs additional tasks required for a create command. */
@Override
public void performAdditionalDomainCreateLogic(