Package google.registry.flows.contact
Class ContactDeleteFlow
java.lang.Object
google.registry.flows.contact.ContactDeleteFlow
- All Implemented Interfaces:
Flow
,MutatingFlow
,TransactionalFlow
@ReportingSpec(CONTACT_DELETE)
public final class ContactDeleteFlow
extends Object
implements MutatingFlow
An EPP flow that deletes a contact.
Contacts that are in use by any domain cannot be deleted. The flow may return immediately if a quick smoke check determines that deletion is impossible due to an existing reference. However, a successful delete will always be asynchronous, as all existing domains must be checked for references to the host before the deletion is allowed to proceed. A poll message will be written with the success or failure message when the process is complete.
-
Method Summary
Modifier and TypeMethodDescriptionrun()
Executes an EPP "flow" and returns a response object (or in the specific case of the "hello" flow a greeting object) that can be converted to XML and returned to the caller.
-
Method Details
-
run
Description copied from interface:Flow
Executes an EPP "flow" and returns a response object (or in the specific case of the "hello" flow a greeting object) that can be converted to XML and returned to the caller.Flows should have
Flow.run()
called once per instance. If a flow needs to be retried, a new instance should be created.Flows should get all of their parameters via injection off of
FlowComponent
.- Specified by:
run
in interfaceFlow
- Throws:
EppException
-