Produced by Araxis Merge on 3/25/2019 8:58:06 AM 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\IMAG_Source\VISA\Java\ViewerImagingWebApp\main\src\java\gov\va\med\imaging\viewer | ViewerImagingRouter.java | Mon Mar 18 20:39:05 2019 UTC |
2 | C:\AraxisMergeCompare\Pri_re\IMAG_Source\VISA\Java\ViewerImagingWebApp\main\src\java\gov\va\med\imaging\viewer | ViewerImagingRouter.java | Tue Mar 19 12:04:12 2019 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 3 | 302 |
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 | * Date Cr eated: May 18, 2018 | |
3 | * Develop er: DNS tjahjb | |
4 | */ | |
5 | package go v.va.med.i maging.vie wer; | |
6 | ||
7 | import jav a.util.Lis t; | |
8 | ||
9 | ||
10 | import gov .va.med.Ro utingToken ; | |
11 | import gov .va.med.im aging.core .annotatio ns.routerf acade.Faca deRouterIn terface; | |
12 | import gov .va.med.im aging.core .annotatio ns.routerf acade.Faca deRouterIn terfaceCom mandTester ; | |
13 | import gov .va.med.im aging.core .annotatio ns.routerf acade.Faca deRouterMe thod; | |
14 | import gov .va.med.im aging.core .interface s.FacadeRo uter; | |
15 | import gov .va.med.im aging.core .interface s.exceptio ns.Connect ionExcepti on; | |
16 | import gov .va.med.im aging.core .interface s.exceptio ns.MethodE xception; | |
17 | import gov .va.med.im aging.exch ange.Image AccessLogE vent; | |
18 | import gov .va.med.im aging.exch ange.busin ess.ImageA ccessReaso n; | |
19 | import gov .va.med.im aging.exch ange.enums .ImageAcce ssReasonTy pe; | |
20 | import gov .va.med.im aging.view er.busines s.CaptureU serResult; | |
21 | import gov .va.med.im aging.view er.busines s.DeleteIm ageUrn; | |
22 | import gov .va.med.im aging.view er.busines s.DeleteIm ageUrnResu lt; | |
23 | import gov .va.med.im aging.view er.busines s.FlagSens itiveImage Urn; | |
24 | import gov .va.med.im aging.view er.busines s.FlagSens itiveImage UrnResult; | |
25 | import gov .va.med.im aging.view er.busines s.ImageFil terFieldVa lue; | |
26 | import gov .va.med.im aging.view er.busines s.ImageFil terResult; | |
27 | import gov .va.med.im aging.view er.busines s.ImagePro perty; | |
28 | import gov .va.med.im aging.view er.busines s.LogAcces sImageUrn; | |
29 | import gov .va.med.im aging.view er.busines s.LogAcces sImageUrnR esult; | |
30 | import gov .va.med.im aging.view er.busines s.QAReview ReportResu lt; | |
31 | import gov .va.med.im aging.view er.busines s.Treating FacilityRe sult; | |
32 | ||
33 | /** | |
34 | * @author DNS tjahjb | |
35 | * | |
36 | */ | |
37 | @FacadeRou terInterfa ce | |
38 | @FacadeRou terInterfa ceCommandT ester | |
39 | public int erface Vie werImaging Router | |
40 | extends Fa cadeRouter | |
41 | { | |
42 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="Dele teImagesCo mmand") | |
43 | pu blic abstr act List<D eleteImage UrnResult> deleteIma ges( | |
44 | Routin gToken rou tingToken, | |
45 | List<D eleteImage Urn> image Urns) | |
46 | th rows Metho dException , Connecti onExceptio n; | |
47 | ||
48 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="GetI mageAccess ReasonList Command") | |
49 | pu blic abstr act List<I mageAccess Reason> ge tImageAcce ssReasonLi st(Routing Token rout ingToken, | |
50 | List<I mageAccess ReasonType > reasonTy pes) | |
51 | th rows Metho dException , Connecti onExceptio n; | |
52 | ||
53 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="PutI magesAsSen sitiveComm and") | |
54 | pu blic abstr act List<F lagSensiti veImageUrn Result> fl agImagesAs Sensitive( | |
55 | Routin gToken rou tingToken, | |
56 | List<F lagSensiti veImageUrn > imageUrn s) | |
57 | th rows Metho dException , Connecti onExceptio n; | |
58 | ||
59 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="PutL ogImageAcc essByUrnsC ommand") | |
60 | pu blic abstr act List<L ogAccessIm ageUrnResu lt> logIma geAccessBy Urns( | |
61 | Routin gToken rou tingToken, | |
62 | String patientIc n, | |
63 | String patientDf n, | |
64 | List<L ogAccessIm ageUrn> im ageUrns) | |
65 | th rows Metho dException , Connecti onExceptio n; | |
66 | ||
67 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="GetU serInforma tionByUser IdCommand" ) | |
68 | pu blic abstr act String getUserIn formationB yUserId( | |
69 | Routin gToken rou tingToken, | |
70 | String userId) | |
71 | th rows Metho dException , Connecti onExceptio n; | |
72 | ||
73 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="GetU serKeysCom mand") | |
74 | pu blic abstr act List<S tring> get UserKeys( | |
75 | Routin gToken rou tingToken) | |
76 | th rows Metho dException , Connecti onExceptio n; | |
77 | ||
78 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="Post ImageAcces sEventComm and") | |
79 | pu blic abstr act void l ogImageAcc essEvent(I mageAccess LogEvent e vent) | |
80 | th rows Metho dException , Connecti onExceptio n; | |
81 | ||
82 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="GetT reatingFac ilitiesCom mand") | |
83 | pu blic abstr act List<T reatingFac ilityResul t> getTrea tingFacili ties( | |
84 | Routin gToken rou tingToken, | |
85 | String patientIc n, | |
86 | String patientDf n) | |
87 | th rows Metho dException , Connecti onExceptio n; | |
88 | ||
89 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="GetC aptureUser sCommand") | |
90 | pu blic abstr act List<C aptureUser Result> ge tCaptureUs ers( | |
91 | Routin gToken rou tingToken, | |
92 | String appFlag, | |
93 | String fromDate, | |
94 | String throughDa te) | |
95 | th rows Metho dException , Connecti onExceptio n; | |
96 | ||
97 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="GetI mageFilter sCommand") | |
98 | pu blic abstr act List<I mageFilter Result> ge tImageFilt ers( | |
99 | Routin gToken rou tingToken, | |
100 | String userId) | |
101 | th rows Metho dException , Connecti onExceptio n; | |
102 | ||
103 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="GetI mageFilter DetailComm and") | |
104 | pu blic abstr act List<I mageFilter FieldValue > getImage FilterDeta il( | |
105 | Routin gToken rou tingToken, | |
106 | String filterIen , | |
107 | String filterNam e, | |
108 | String userId) | |
109 | th rows Metho dException , Connecti onExceptio n; | |
110 | ||
111 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="Post SaveImageF ilterComma nd") | |
112 | pu blic abstr act String saveImage Filter( | |
113 | Routin gToken rou tingToken, | |
114 | List<I mageFilter FieldValue > imageFil terValues) | |
115 | th rows Metho dException , Connecti onExceptio n; | |
116 | ||
117 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="Dele teImageFil terCommand ") | |
118 | pu blic abstr act String deleteIma geFilter( | |
119 | Routin gToken rou tingToken, | |
120 | String filterIen ) | |
121 | th rows Metho dException , Connecti onExceptio n; | |
122 | ||
123 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="GetQ AReviewRep ortsComman d") | |
124 | pu blic abstr act List<Q AReviewRep ortResult> getQARevi ewReports( | |
125 | Routin gToken rou tingToken, | |
126 | String userId) | |
127 | th rows Metho dException , Connecti onExceptio n; | |
128 | ||
129 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="GetQ AReviewRep ortDataCom mand") | |
130 | pu blic abstr act String getQARevi ewReportDa ta( | |
131 | Routin gToken rou tingToken, | |
132 | String flags, | |
133 | String fromDate, | |
134 | String throughDa te, | |
135 | String mque | |
136 | ) | |
137 | th rows Metho dException , Connecti onExceptio n; | |
138 | ||
139 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="Post ImagePrope rtiesComma nd") | |
140 | pu blic abstr act String setImageP roperties( | |
141 | Routin gToken rou tingToken, | |
142 | List<I mageProper ty> imageP roperties) | |
143 | th rows Metho dException , Connecti onExceptio n; | |
144 | ||
145 | @F acadeRoute rMethod(as ynchronous =false, co mmandClass Name="GetI mageProper tiesComman d") | |
146 | pu blic abstr act List<I mageProper ty> getIma geProperti es( | |
147 | Routin gToken rou tingToken, | |
148 | String imageIEN, | |
149 | String props, | |
150 | String flags) | |
151 | th rows Metho dException , Connecti onExceptio n; | |
152 | ||
153 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.