
org.meridor.fias.beans.FiscalCodes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fias-client Show documentation
Show all versions of fias-client Show documentation
Java client for FNS FIAS database.
The newest version!
package org.meridor.fias.beans;
public class FiscalCodes {
private final String postalCode;
private final String ifnsPersonsCode;
private final String ifnsCompaniesCode;
private final String okato;
private final String oktmo;
public FiscalCodes(String postalCode, String ifnsPersonsCode, String ifnsCompaniesCode, String okato, String oktmo) {
this.postalCode = postalCode;
this.ifnsPersonsCode = ifnsPersonsCode;
this.ifnsCompaniesCode = ifnsCompaniesCode;
this.okato = okato;
this.oktmo = oktmo;
}
public String getPostalCode() {
return postalCode;
}
public String getIfnsPersonsCode() {
return ifnsPersonsCode;
}
public String getIfnsCompaniesCode() {
return ifnsCompaniesCode;
}
public String getOkato() {
return okato;
}
public String getOktmo() {
return oktmo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy