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

cz.active24.client.fred.data.common.contact.IdentificationData Maven / Gradle / Ivy

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

/**
 * Identity-document identification.
 *
 * 
    *
  • {@link IdentificationData#type} – the type of the identity document as one of values *
      *
    1. op (identity card number),
    2. *
    3. passport (passport number),
    4. *
    5. mpsv (number from the Ministry of Labour and Social Affairs),
    6. *
    7. ico (company number),
    8. *
    9. birthday (the date of birth).
    10. *
    *
  • {@link IdentificationData#value} - the identification number
  • *
* * @see FRED documentation */ public class IdentificationData { private IdentType type; private String value; protected IdentificationData() { } public IdentificationData(IdentType type, String value) { this.setType(type); this.setValue(value); } public IdentType getType() { return type; } public void setType(IdentType type) { this.type = type; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } @Override public String toString() { final StringBuffer sb = new StringBuffer("IdentificationData{"); sb.append("type=").append(type); sb.append(", value='").append(value).append('\''); sb.append('}'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy