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

cz.active24.client.fred.data.poll.contact.ContactTransferPollResponse Maven / Gradle / Ivy

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

import cz.active24.client.fred.data.poll.PollResponse;
import cz.active24.client.fred.eppclient.objectstrategy.PollMessageType;

import java.io.Serializable;
import java.util.Date;

/**
 * Event: An object has been transferred to another registrar.
 *
 * 
    *
  • {@link ContactTransferPollResponse#id} - an object handle
  • *
  • {@link ContactTransferPollResponse#trDate} - the date of the transfer
  • *
  • {@link ContactTransferPollResponse#clID} - the handle of the registrar who requested the transfer
  • *
* * @see FRED documentation */ public class ContactTransferPollResponse extends PollResponse implements Serializable { private String id; private Date trDate; private String clID; public ContactTransferPollResponse() { setPollMessageType(PollMessageType.CONTACT_TRANSFER); } public String getId() { return id; } public void setId(String id) { this.id = id; } public Date getTrDate() { return trDate; } public void setTrDate(Date trDate) { this.trDate = trDate; } public String getClID() { return clID; } public void setClID(String clID) { this.clID = clID; } @Override public String toString() { final StringBuffer sb = new StringBuffer("ContactTransferPollResponse{"); sb.append("id='").append(id).append('\''); sb.append(", trDate=").append(trDate); sb.append(", clID='").append(clID).append('\''); sb.append(", messageId='").append(getMessageId()).append('\''); sb.append(", messageCount=").append(getMessageCount()); sb.append(", messageQDate=").append(getMessageQDate()); sb.append(", pollMessageType=").append(getPollMessageType()); sb.append(", clientTransactionId='").append(getClientTransactionId()).append('\''); sb.append(", serverTransactionId='").append(getServerTransactionId()).append('\''); sb.append(", result=").append(getResult()); sb.append(", serverObjectType=").append(getServerObjectType()); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy