br.ufsc.bridge.mpiclient.responsehandler.pdq.NisPisPasepHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mpi-client Show documentation
Show all versions of mpi-client Show documentation
Implementação de client para um servidor MPI (Master Patient Index) utilizando mensagens SOAP (PIX/PDQ) baseadas na especificação técnica para integração do
DATASUS.
The newest version!
package br.ufsc.bridge.mpiclient.responsehandler.pdq;
import lombok.NonNull;
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.XMLReader;
import br.ufsc.bridge.mpiclient.model.Cidadao;
public class NisPisPasepHandler extends DocumentHandler {
public NisPisPasepHandler() {
super("2.16.840.1.113883.13.240");
}
@Override
public void handle(@NonNull XMLReader reader, @NonNull ContentHandler parent, @NonNull Cidadao current, @NonNull Attributes attr) {
super.handle(reader, parent, current, attr);
current.setNumeroNisPisPasep(attr.getValue("extension"));
}
}