Record Class DomainCreateFlowCustomLogic.BeforeSaveParameters

java.lang.Object
java.lang.Record
google.registry.flows.custom.DomainCreateFlowCustomLogic.BeforeSaveParameters
Record Components:
newDomain - The new Domain entity that is going to be persisted at the end of the transaction.
historyEntry - The new HistoryEntry entity for the domain's creation that is going to be persisted at the end of the transaction.
entityChanges - The collection of EntityChanges (including new entities and those to delete) that will be persisted at the end of the transaction.

Note that the new domain and history entry are also included as saves in this collection, and are separated out above solely for convenience, as they are most likely to need to be changed. Removing them from the collection will cause them not to be saved, which is most likely not what you intended.

years - The number of years that the domain name will be registered for (typically 1).
Enclosing class:
DomainCreateFlowCustomLogic

public static record DomainCreateFlowCustomLogic.BeforeSaveParameters(Domain newDomain, HistoryEntry historyEntry, EntityChanges entityChanges, int years) extends Record
  • Constructor Details

    • BeforeSaveParameters

      public BeforeSaveParameters(Domain newDomain, HistoryEntry historyEntry, EntityChanges entityChanges, int years)
      Creates an instance of a BeforeSaveParameters record class.
      Parameters:
      newDomain - the value for the newDomain record component
      historyEntry - the value for the historyEntry record component
      entityChanges - the value for the entityChanges record component
      years - the value for the years record component
  • Method Details

    • newBuilder

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • newDomain

      public Domain newDomain()
      Returns the value of the newDomain record component.
      Returns:
      the value of the newDomain record component
    • historyEntry

      public HistoryEntry historyEntry()
      Returns the value of the historyEntry record component.
      Returns:
      the value of the historyEntry record component
    • entityChanges

      public EntityChanges entityChanges()
      Returns the value of the entityChanges record component.
      Returns:
      the value of the entityChanges record component
    • years

      public int years()
      Returns the value of the years record component.
      Returns:
      the value of the years record component