io.rubrica.certificate.ec.bce.CertificadoPersonaNaturalBancoCentral Maven / Gradle / Ivy
/*
* Copyright 2009-2018 Rubrica
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package io.rubrica.certificate.ec.bce;
import java.security.cert.X509Certificate;
import io.rubrica.certificate.ec.CertificadoPersonaNatural;
/**
* Certificado de persona natural emitido por el Banco Central del Ecuador.
*
* @author Ricardo Arguello
*/
public class CertificadoPersonaNaturalBancoCentral extends CertificadoBancoCentral
implements CertificadoPersonaNatural {
public CertificadoPersonaNaturalBancoCentral(X509Certificate certificado) {
super(certificado);
}
// public String getCedulaPasaporte() {
// return obtenerExtension(OID_CEDULA_PASAPORTE);
// }
// public String getNombres() {
// return obtenerExtension(OID_NOMBRES);
// }
// public String getPrimerApellido() {
// return obtenerExtension(OID_APELLIDO_1);
// }
// public String getSegundoApellido() {
// return obtenerExtension(OID_APELLIDO_2);
// }
// public String getDireccion() {
// return obtenerExtension(OID_DIRECCION);
// }
// public String getTelefono() {
// return obtenerExtension(OID_TELEFONO);
// }
// public String getCiudad() {
// return obtenerExtension(OID_CIUDAD);
// }
// public String getPais() {
// return obtenerExtension(OID_PAIS);
// }
// public String getRuc() {
// return obtenerExtension(OID_RUC);
// }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy