/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mx.edu.um.mateo.contabilidad.facturas.model;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
/**
*
* @author develop
*/
@XmlRootElement(namespace = "http:/www.sat.gob.mx/cfd/LCO", name = "Contribuyente")
public class Contribuyente {
private Certificado certificado;
private String RFC;
@XmlAttribute
public String getRFC() {
return RFC;
}
public void setRFC(String RFC) {
this.RFC = RFC;
}
public Certificado getCertificado() {
return certificado;
}
public void setCertificado(Certificado certificado) {
this.certificado = certificado;
}
}