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

cz.active24.client.fred.data.info.contact.ContactInfoRequest Maven / Gradle / Ivy

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

import cz.active24.client.fred.data.EppRequest;
import cz.active24.client.fred.data.info.InfoRequest;
import cz.active24.client.fred.eppclient.objectstrategy.ServerObjectType;

import java.io.Serializable;

/**
 * Data for command info for contact.
 *
 * 
    *
  • {@link ContactInfoRequest#contactId} - the contact handle
  • *
  • {@link ContactInfoRequest#authInfo} - the contact's authorization information (transfer password) - optional, * use for reading disclosed data if you are not the designated registrar
  • *
* * @see FRED documentation */ public class ContactInfoRequest extends EppRequest implements Serializable, InfoRequest { private String contactId; private String authInfo; public ContactInfoRequest(String contactId) { setServerObjectType(ServerObjectType.CONTACT); this.contactId = contactId; } public String getContactId() { return contactId; } protected void setContactId(String contactId) { this.contactId = contactId; } public String getAuthInfo() { return authInfo; } public void setAuthInfo(String authInfo) { this.authInfo = authInfo; } @Override public String toString() { final StringBuffer sb = new StringBuffer("ContactInfoRequest{"); sb.append("contactId='").append(contactId).append('\''); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy