Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package gov.va.med.pbm.ampl.fhir.unmarshall;
/**
* IUnMarshaller is an interface which uses a generic type definition for implemented classes.
*
* @author Ian Meinert
*
* @param <T> The generic type definition to implement
*/
public interface IUnmarshaller<T> {
/**
* The template for retrieving all records for a patient.
*/
void getAllPatientsById();
/**
* The template for searching records.
*/
void search();
/**
* The template for sorting records.
*/
void sort();
/**
* The template for paginating records.
*/
void paginate();
}