source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Adapters/General/AdapterReidentificationLib/src/gov/hhs/fha/nhinc/adapter/reidentification/data/PseudonymMaps.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: 835 bytes
Line 
1package gov.hhs.fha.nhinc.adapter.reidentification.data;
2
3import java.util.ArrayList;
4import java.util.List;
5
6
7
8/**
9 * This class represents the root node of the reidentification XML file.
10 */
11public class PseudonymMaps {
12
13 /**
14 * This represents a collection of pseudonym maps. By design, a pseudonym
15 * can only map to one real ID, which serves as the key to the object look-up.
16 */
17 private List<PseudonymMap>pseudonymMaps = new ArrayList<PseudonymMap>();
18
19 /**
20 * This retrieves a collection of pseudonym maps.
21 */
22 public List<PseudonymMap> getPseudonymMap(){
23 return pseudonymMaps;
24 }
25
26 /**
27 * This sets an collection of pseudonym maps.
28 */
29 public void setPseudonymMap(List<PseudonymMap> pseudonymMap){
30 this.pseudonymMaps = pseudonymMap;
31 }
32}
Note: See TracBrowser for help on using the repository browser.