All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.ufsc.bridge.mpiclient.responsehandler.pdq.PatientHandler Maven / Gradle / Ivy

Go to download

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"));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy