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

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

There is a newer version: 2.50
Show newest version
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