mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 07:57:13 +02:00
Add extra flow logic hooks for transfer approve, cancel and reject
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=139217498
This commit is contained in:
parent
5262cd2854
commit
fb47d2563d
12 changed files with 150 additions and 6 deletions
|
@ -126,8 +126,26 @@ public interface RegistryExtraFlowLogic {
|
|||
EppInput eppInput,
|
||||
HistoryEntry historyEntry) throws EppException;
|
||||
|
||||
/** Performs additional tasks required for a transfer command. */
|
||||
public void performAdditionalDomainTransferLogic(
|
||||
/** Performs additional tasks required for a domain transfer approve command. */
|
||||
public void performAdditionalDomainTransferApproveLogic(
|
||||
DomainResource domain,
|
||||
String clientId,
|
||||
HistoryEntry historyEntry) throws EppException;
|
||||
|
||||
/** Performs additional tasks required for a domain transfer cancel command. */
|
||||
public void performAdditionalDomainTransferCancelLogic(
|
||||
DomainResource domain,
|
||||
String clientId,
|
||||
HistoryEntry historyEntry) throws EppException;
|
||||
|
||||
/** Performs additional tasks required for a domain transfer reject command. */
|
||||
public void performAdditionalDomainTransferRejectLogic(
|
||||
DomainResource domain,
|
||||
String clientId,
|
||||
HistoryEntry historyEntry) throws EppException;
|
||||
|
||||
/** Performs additional tasks required for a transfer request command. */
|
||||
public void performAdditionalDomainTransferRequestLogic(
|
||||
DomainResource domain,
|
||||
String clientId,
|
||||
DateTime asOfDate,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue