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

@ -69,6 +69,15 @@ public interface RegistryExtraFlowLogic {
EppInput eppInput,
HistoryEntry historyEntry) throws EppException;
/** Performs additional tasks required for an allocate command. */
public void performAdditionalDomainAllocateLogic(
DomainResource domain,
String clientId,
DateTime asOfDate,
int years,
EppInput eppInput,
HistoryEntry historyEntry) throws EppException;
/** Computes the expected creation fee. */
public BaseFee getCreateFeeOrCredit(
String domainName,