br.ufsc.bridge.mpiclient.responsehandler.pdq.PatientHandler 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 br.ufsc.bridge.mpiclient.responsehandler.DefaultAttributeHandler;
public class PatientHandler extends DefaultAttributeHandler {
public PatientHandler() {
super("patient");
this.handlers.add(new IdLocalHandler());
this.handlers.add(new PatientPersonHandler());
this.handlers.add(new IgnoreAttribute("providerOrganization"));
this.handlers.add(new IgnoreAttribute("subjectOf1"));
}
}