All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cz.active24.client.fred.data.sendauthinfo.domain.DomainSendAuthInfoRequest Maven / Gradle / Ivy

There is a newer version: 2.50
Show newest version
package cz.active24.client.fred.data.sendauthinfo.domain;

import cz.active24.client.fred.data.EppRequest;
import cz.active24.client.fred.eppclient.objectstrategy.ServerObjectType;
import cz.active24.client.fred.data.sendauthinfo.SendAuthInfoRequest;

import java.io.Serializable;

/**
 * A domain sendAuthInfo command is used to provide the transfer password of a domain to the registrant and the administrative contacts of the domain.
 *
 * 
    *
  • * {@link DomainSendAuthInfoRequest#domainName} - a domain name *
  • *
* * @see FRED documentation */ public class DomainSendAuthInfoRequest extends EppRequest implements Serializable, SendAuthInfoRequest { private String domainName; public DomainSendAuthInfoRequest(String domainName) { setServerObjectType(ServerObjectType.DOMAIN); this.domainName = domainName; } public String getDomainName() { return domainName; } protected void setDomainName(String domainName) { this.domainName = domainName; } @Override public String toString() { final StringBuffer sb = new StringBuffer("DomainSendAuthInfoRequest{"); sb.append("domainName='").append(domainName).append('\''); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy