mirror of
https://github.com/google/nomulus
synced 2026-06-02 04:56:39 +00: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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user