Produced by Araxis Merge on 7/10/2017 1:01:42 PM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | C:\AraxisMergeCompare\Pri_un\IV-ehmp_cif\CoreValueObjects\main\src\java\gov\va\med\imaging\datasource | PatientDataSourceSpi.java | Thu Jun 29 17:22:23 2017 UTC |
| 2 | C:\AraxisMergeCompare\Pri_re\IV-ehmp_cif\CoreValueObjects\main\src\java\gov\va\med\imaging\datasource | PatientDataSourceSpi.java | Fri Jul 7 16:37:05 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 264 |
| Changed | 2 | 4 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| Whitespace | |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
| 1 | /** | |
| 2 | * | |
| 3 | Package: MAG - Vis tA Imaging | |
| 4 | WARNING: Per VHA D irective 2 004-038, t his routin e should n ot be modi fied. | |
| 5 | Date Cre ated: Apr 10, 2008 | |
| 6 | Site Nam e: Washin gton OI Fi eld Office , Silver S pring, MD | |
| 7 | Developer:
|
|
| 8 | Descript ion: | |
| 9 | ||
| 10 | ;; +-------- ---------- ---------- ---------- ---------- ---------- ---------- + | |
| 11 | ;; Property of the US Government . | |
| 12 | ;; No permis sion to co py or redi stribute t his softwa re is give n. | |
| 13 | ;; Use of un released v ersions of this soft ware requi res the us er | |
| 14 | ;; to execu te a writt en test ag reement wi th the Vis tA Imaging | |
| 15 | ;; Developm ent Office of the De partment o f Veterans Affairs, | |
| 16 | ;; telephon e (301) 73 4-0100. | |
| 17 | ;; | |
| 18 | ;; The Food and Drug A dministrat ion classi fies this software a s | |
| 19 | ;; a Class I I medical device. A s such, it may not b e changed | |
| 20 | ;; in any wa y. Modifi cations to this soft ware may r esult in a n | |
| 21 | ;; adulterat ed medical device un der 21CFR8 20, the us e of which | |
| 22 | ;; is consid ered to be a violati on of US F ederal Sta tutes. | |
| 23 | ;; +-------- ---------- ---------- ---------- ---------- ---------- ---------- + | |
| 24 | ||
| 25 | */ | |
| 26 | package go v.va.med.i maging.dat asource; | |
| 27 | ||
| 28 | import gov .va.med.He althSummar yURN; | |
| 29 | import gov .va.med.Pa tientIdent ifier; | |
| 30 | import gov .va.med.Ro utingToken ; | |
| 31 | import gov .va.med.im aging.core .interface s.exceptio ns.Connect ionExcepti on; | |
| 32 | import gov .va.med.im aging.core .interface s.exceptio ns.MethodE xception; | |
| 33 | import gov .va.med.im aging.data source.ann otations.S PI; | |
| 34 | import gov .va.med.im aging.exch ange.busin ess.Health SummaryTyp e; | |
| 35 | import gov .va.med.im aging.exch ange.busin ess.Patien t; | |
| 36 | import gov .va.med.im aging.exch ange.busin ess.Patien tMeansTest Result; | |
| 37 | import gov .va.med.im aging.exch ange.busin ess.Patien tPhotoID; | |
| 38 | import gov .va.med.im aging.exch ange.busin ess.Patien tPhotoIDIn formation; | |
| 39 | import gov .va.med.im aging.exch ange.busin ess.Patien tSensitive Value; | |
| 40 | ||
| 41 | import jav a.io.Input Stream; | |
| 42 | import jav a.util.Lis t; | |
| 43 | import jav a.util.Sor tedSet; | |
| 44 | ||
| 45 | /** | |
| 46 | * @author
|
|
| 47 | * | |
| 48 | */ | |
| 49 | @SPI(descr iption="In terface to get patie nt informa tion.") | |
| 50 | public int erface Pat ientDataSo urceSpi | |
| 51 | extends Ve rsionableD ataSourceS pi | |
| 52 | { | |
| 53 | ||
| 54 | /* * | |
| 55 | * Return a List of Si te where t he specifi ed patient has been treated. | |
| 56 | * | |
| 57 | * @param gl obalRoutin gToken | |
| 58 | * @param pa tientIcn | |
| 59 | * @param in cludeTrail ingCharact ersForSite 200 Determ ines if tr ailing cha racters of a site nu mber for s ite 200 sh ould be in cluded | |
| 60 | * @return | |
| 61 | * @throws M ethodExcep tion | |
| 62 | * @throws C onnectionE xception | |
| 63 | * / | |
| 64 | pu blic List< String> ge tTreatingS ites(Routi ngToken gl obalRoutin gToken, Pa tientIdent ifier pati entIdentif ier, | |
| 65 | boolea n includeT railingCha ractersFor Site200) | |
| 66 | th rows Metho dException , Connecti onExceptio n; | |
| 67 | ||
| 68 | /* * | |
| 69 | * Get a Sor tedSet of Patient in stances th at meet th e | |
| 70 | * search cr iteria. | |
| 71 | * The searc hName may be a fragm ent, follo wing the C linical Di splay form at. | |
| 72 | * | |
| 73 | * @param se archName | |
| 74 | * @return | |
| 75 | * @throws M ethodExcep tion | |
| 76 | * @throws C onnectionE xception | |
| 77 | * / | |
| 78 | pu blic Sorte dSet<Patie nt> findPa tients(Rou tingToken globalRout ingToken, String sea rchName) | |
| 79 | th rows Metho dException , Connecti onExceptio n; | |
| 80 | ||
| 81 | /* * | |
| 82 | * Get an im age that m ay be used for patie nt identif ication. | |
| 83 | * | |
| 84 | * @param pa tientIcn | |
| 85 | * @return | |
| 86 | * @throws M ethodExcep tion | |
| 87 | * @throws C onnectionE xception | |
| 88 | * / | |
| 89 | pu blic Input Stream get PatientIde ntificatio nImage(Pat ientIdenti fier patie ntIdentifi er) | |
| 90 | th rows Metho dException , Connecti onExceptio n; | |
| 91 | ||
| 92 | pu blic Patie ntPhotoID getPatient PhotoIdent ificationI mage(Patie ntIdentifi er patient Identifier ) | |
| 93 | th rows Metho dException , Connecti onExceptio n; | |
| 94 | ||
| 95 | pu blic Patie ntPhotoIDI nformation getPatien tIdentific ationImage Informatio n(RoutingT oken globa lRoutingTo ken, | |
| 96 | Patien tIdentifie r patientI dentifier) | |
| 97 | th rows Metho dException , Connecti onExceptio n; | |
| 98 | ||
| 99 | /* * | |
| 100 | * Checks th e level of sensitivi ty for the patient. | |
| 101 | * | |
| 102 | * @param pa tientIcn | |
| 103 | * @return | |
| 104 | * @throws M ethodExcep tion | |
| 105 | * @throws C onnectionE xception | |
| 106 | * / | |
| 107 | pu blic Patie ntSensitiv eValue get PatientSen sitivityLe vel(Routin gToken glo balRouting Token, Pat ientIdenti fier Patie ntIdentifi er) | |
| 108 | th rows Metho dException , Connecti onExceptio n; | |
| 109 | ||
| 110 | pu blic boole an logPati entSensiti veAccess(R outingToke n globalRo utingToken , PatientI dentifier PatientIde ntifier) | |
| 111 | th rows Metho dException , Connecti onExceptio n; | |
| 112 | ||
| 113 | /* * | |
| 114 | * Get the i nformation about a s pecified p atient. | |
| 115 | * | |
| 116 | * @param gl obalRoutin gToken | |
| 117 | * @param pa tientIcn | |
| 118 | * @return | |
| 119 | * @throws M ethodExcep tion | |
| 120 | * @throws C onnectionE xception | |
| 121 | * / | |
| 122 | pu blic Patie nt getPati entInforma tion(Routi ngToken gl obalRoutin gToken, Pa tientIdent ifier pati entIdentif ier) | |
| 123 | th rows Metho dException , Connecti onExceptio n; | |
| 124 | ||
| 125 | pu blic Patie ntMeansTes tResult ge tPatientMe ansTest(Ro utingToken globalRou tingToken, PatientId entifier p atientIden tifier) | |
| 126 | th rows Metho dException , Connecti onExceptio n; | |
| 127 | ||
| 128 | pu blic List< HealthSumm aryType> g etHealthSu mmaryTypes (RoutingTo ken global RoutingTok en) | |
| 129 | th rows Metho dException , Connecti onExceptio n; | |
| 130 | ||
| 131 | pu blic Strin g getHealt hSummary(H ealthSumma ryURN heal thSummaryU rn, Patien tIdentifie r patientI dentifier) | |
| 132 | th rows Metho dException , Connecti onExceptio n; | |
| 133 | ||
| 134 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.