source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Adapters/General/MpiLib/src/gov/hhs/fha/nhinc/mpilib/Patients.java@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 570 bytes
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package gov.hhs.fha.nhinc.mpilib;
6
7import java.util.ArrayList;
8import org.apache.commons.logging.Log;
9import org.apache.commons.logging.LogFactory;
10
11/**
12 *
13 * @author rayj
14 */
15public class Patients extends ArrayList<Patient>
16 implements java.io.Serializable {
17 private static Log log = LogFactory.getLog(Patients.class);
18 static final long serialVersionUID = -8509797581456649328L;
19
20 public Patients() {
21 log.info("Patients Initialized");
22 }
23}
Note: See TracBrowser for help on using the repository browser.