cz.active24.client.fred.data.poll.nsset.TechnicalCheckResult 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.poll.nsset;
/**
* The result of a single test.
*
*
* - {@link TechnicalCheckResult#testname} - the name of the test
* - {@link TechnicalCheckResult#status} - success of the test
* - {@link TechnicalCheckResult#note} - extended information about the result from the test implementation
*
*
* @see FRED documentation
*/
public class TechnicalCheckResult {
private String testname;
private boolean status;
private String note;
public TechnicalCheckResult() {
}
public String getTestname() {
return testname;
}
public void setTestname(String testname) {
this.testname = testname;
}
public boolean getStatus() {
return status;
}
public void setStatus(boolean status) {
this.status = status;
}
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("TechnicalCheckResult{");
sb.append("testname='").append(testname).append('\'');
sb.append(", status=").append(status);
sb.append(", note='").append(note).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy