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

cz.active24.client.fred.data.delete.contact.ContactDeleteRequest Maven / Gradle / Ivy

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

import cz.active24.client.fred.data.delete.DeleteRequest;
import cz.active24.client.fred.data.EppRequest;
import cz.active24.client.fred.eppclient.objectstrategy.ServerObjectType;

import java.io.Serializable;

/**
 * A contact delete command is used to delete a contact whose status allows it to be deleted.
 * 
    *
  • {@link ContactDeleteRequest#contactId} - the contact handle
  • *
* * @see FRED documentation */ public class ContactDeleteRequest extends EppRequest implements Serializable, DeleteRequest { private String contactId; public ContactDeleteRequest(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("ContactDeleteRequest{"); sb.append("contactId='").append(contactId).append('\''); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy