Class PasswordResetRequest

java.lang.Object
google.registry.model.ImmutableObject
google.registry.model.console.PasswordResetRequest
All Implemented Interfaces:
Buildable, Cloneable

@Entity public class PasswordResetRequest extends ImmutableObject implements Buildable
Represents a password reset request of some type.

Password reset requests must be performed within an hour of the time that they were requested, as well as requiring that the requester and the fulfiller have the proper respective permissions.

  • Constructor Details

    • PasswordResetRequest

      public PasswordResetRequest()
  • Method Details

    • getVerificationCode

      public String getVerificationCode()
    • getType

      public PasswordResetRequest.Type getType()
    • getRequestTime

      public org.joda.time.DateTime getRequestTime()
    • getRequester

      public String getRequester()
    • getFulfillmentTime

      public Optional<org.joda.time.DateTime> getFulfillmentTime()
    • getDestinationEmail

      public String getDestinationEmail()
    • getRegistrarId

      public String getRegistrarId()
    • asBuilder

      public PasswordResetRequest.Builder asBuilder()
      Specified by:
      asBuilder in interface Buildable