org.openhealthexchange.openpixpdq.ihe
Interface IPdSupplier

All Known Implementing Classes:
PdSupplier

public interface IPdSupplier

This interface defines a patient demographics supplier (PDS) actor. PDS is a server side actor specified by IHE patient demographics query (PDQ) profile. See Section 3.21 of Vol. 2 (ITI TF-2): Transactions, available on the IHE site.

This class needs to register a PDS adapter which implements IPdSupplierAdapter by invoking registerPdSupplierAdapter(IPdSupplierAdapter). The adapter provides a bridge between this PDSupplier actor and the EMPI.

Version:
1.0, Mar 27, 2007
Author:
Wenzhi Li
See Also:
IPdSupplierAdapter

Method Summary
 java.lang.String getName()
          Gets an informative name for this patient demographics supplier actor for use in error and log messages.
 void registerPdSupplierAdapter(IPdSupplierAdapter pdSupplierAdapter)
          Registers a PdSupplier adapter which provides patient demographics data for patient demographics query (PDQ).
 void start()
          Starts this patient demographics supplier actor.
 void stop()
          Stops this patient demographics supplier actor.
 

Method Detail

start

void start()
Starts this patient demographics supplier actor. Do any initialization and logging that might be needed.


stop

void stop()
Stops this patient demographics supplier actor. Do any de-initialization and logging that might be needed.


getName

java.lang.String getName()
Gets an informative name for this patient demographics supplier actor for use in error and log messages.

Returns:
an informative name for this patient demographics supplier actor

registerPdSupplierAdapter

void registerPdSupplierAdapter(IPdSupplierAdapter pdSupplierAdapter)
Registers a PdSupplier adapter which provides patient demographics data for patient demographics query (PDQ).

Parameters:
pdSupplierAdapter -
See Also:
IPdSupplierAdapter