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

cz.active24.client.fred.data.poll.nsset.TechnicalCheckResultsPollResponse Maven / Gradle / Ivy

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

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

import java.io.Serializable;
import java.util.List;

/**
 * Event: A technical check that the client had requested, has finished.
 *
 * 
    *
  • {@link TechnicalCheckResultsPollResponse#id} - the nsset handle
  • *
  • {@link TechnicalCheckResultsPollResponse#cltestid} - clTRID of technical check request
  • *
  • {@link TechnicalCheckResultsPollResponse#name} - a listing of additional domain names that have been tested with the nsset
  • *
  • {@link TechnicalCheckResultsPollResponse#testResult} - the result of a single test, see {@link TechnicalCheckResult}
  • *
* * @see FRED documentation */ public class TechnicalCheckResultsPollResponse extends PollResponse implements Serializable { private String id; private String cltestid; private List name; private List testResult; public TechnicalCheckResultsPollResponse() { setPollMessageType(PollMessageType.TECHNICAL_CHECK_RESULTS); } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getCltestid() { return cltestid; } public void setCltestid(String cltestid) { this.cltestid = cltestid; } public List getName() { return name; } public void setName(List name) { this.name = name; } public List getTestResult() { return testResult; } public void setTestResult(List testResult) { this.testResult = testResult; } @Override public String toString() { final StringBuffer sb = new StringBuffer("TechnicalCheckResultsPollResponse{"); sb.append("id='").append(id).append('\''); sb.append(", cltestid='").append(cltestid).append('\''); sb.append(", name=").append(name); sb.append(", testResult=").append(testResult); 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