Package google.registry.model.reporting
Enum Class HistoryEntry.Type
- All Implemented Interfaces:
Serializable
,Comparable<HistoryEntry.Type>
,Constable
- Enclosing class:
HistoryEntry
Represents the type of history entry.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDeprecated.Used for domain registration autorenews explicitly logged byExpandBillingRecurrencesAction
.Resource was created by an escrow file import.A synthetic history entry created by a tool or back-end migration script outside the scope of usual EPP flows. -
Method Summary
Modifier and TypeMethodDescriptionstatic HistoryEntry.Type
Returns the enum constant of this class with the specified name.static HistoryEntry.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONTACT_CREATE
-
CONTACT_DELETE
-
CONTACT_DELETE_FAILURE
-
CONTACT_PENDING_DELETE
-
CONTACT_TRANSFER_APPROVE
-
CONTACT_TRANSFER_CANCEL
-
CONTACT_TRANSFER_REJECT
-
CONTACT_TRANSFER_REQUEST
-
CONTACT_UPDATE
-
DOMAIN_ALLOCATE
Deprecated.Used for history entries that were allocated as a result of a domain application.Domain applications (and thus allocating from an application) no longer exist, but we have existing domains in the system that were created via allocation and thus have history entries of this type under them, so this is retained for legacy purposes.
-
DOMAIN_AUTORENEW
Used for domain registration autorenews explicitly logged byExpandBillingRecurrencesAction
. -
DOMAIN_CREATE
-
DOMAIN_DELETE
-
DOMAIN_RENEW
-
DOMAIN_RESTORE
-
DOMAIN_TRANSFER_APPROVE
-
DOMAIN_TRANSFER_CANCEL
-
DOMAIN_TRANSFER_REJECT
-
DOMAIN_TRANSFER_REQUEST
-
DOMAIN_UPDATE
-
HOST_CREATE
-
HOST_DELETE
-
HOST_DELETE_FAILURE
-
HOST_PENDING_DELETE
-
HOST_UPDATE
-
RDE_IMPORT
Resource was created by an escrow file import. -
SYNTHETIC
A synthetic history entry created by a tool or back-end migration script outside the scope of usual EPP flows. These are sometimes needed to serve as parents for billing events or poll messages that otherwise wouldn't have a suitable parent.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-