cz.active24.client.fred.data.sendauthinfo.contact.ContactSendAuthInfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fred-client Show documentation
Show all versions of fred-client Show documentation
A Java EPP client for FRED (Free Registry for ENUM and Domains)
package cz.active24.client.fred.data.sendauthinfo.contact;
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 contact sendAuthInfo command is used to provide the transfer password of a contact to the contact.
*
*
* -
* {@link ContactSendAuthInfoRequest#contactId} - a contact handle
*
*
*
* @see FRED documentation
*/
public class ContactSendAuthInfoRequest extends EppRequest implements Serializable, SendAuthInfoRequest {
private String contactId;
public ContactSendAuthInfoRequest(String contactId) {
setServerObjectType(ServerObjectType.CONTACT);
this.contactId = contactId;
}
public String getContactId() {
return contactId;
}
protected void setContactId(String contactId) {
this.contactId = contactId;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("ContactSendAuthInfoRequest{");
sb.append("contactId='").append(contactId).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy