mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 00:47:11 +02:00
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:
parent
218a4b735b
commit
09beacf746
5 changed files with 59 additions and 3 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue