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

cz.active24.client.fred.data.check.keyset.KeysetCheckData Maven / Gradle / Ivy

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

import java.io.Serializable;

/**
 * Keyset check data.
 *
 * 
    *
  • {@link KeysetCheckData#id} - the keyset handle
  • *
  • {@link KeysetCheckData#avail} - availability; true – available, false – not available
  • *
  • {@link KeysetCheckData#reason} - if the availability is negative, this element contains an explanation why the keyset handle is not available
  • *
* * * @see FRED documentation */ public class KeysetCheckData implements Serializable { private String id; private Boolean avail; private String reason; public KeysetCheckData() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public Boolean getAvail() { return avail; } public void setAvail(Boolean avail) { this.avail = avail; } public String getReason() { return reason; } public void setReason(String reason) { this.reason = reason; } @Override public String toString() { final StringBuffer sb = new StringBuffer("KeysetCheckData{"); sb.append("id='").append(id).append('\''); sb.append(", avail=").append(avail); sb.append(", reason='").append(reason).append('\''); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy