
com.github.enesusta.soap.domain.Citizen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of turkish-citizen-validator Show documentation
Show all versions of turkish-citizen-validator Show documentation
This library uses soap protocol to validate turkish citizen id number
The newest version!
package com.github.enesusta.soap.domain;
public class Citizen {
private long citizenId;
private String citizenName;
private String citizenSurname;
private int citizenBirthYear;
public Citizen(long citizenId,
String citizenName,
String citizenSurname,
int citizenBirthYear) {
this.citizenId = citizenId;
this.citizenName = citizenName;
this.citizenSurname = citizenSurname;
this.citizenBirthYear = citizenBirthYear;
}
public long getCitizenId() {
return citizenId;
}
public String getCitizenName() {
return citizenName;
}
public String getCitizenSurname() {
return citizenSurname;
}
public int getCitizenBirthYear() {
return citizenBirthYear;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy