Produced by Araxis Merge on 3/25/2019 8:58:05 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\ViewerImagingRouter\main\src\java\gov\va\med\imaging\viewer\router\commands | GetQAReviewReportDataCommandImpl.java | Mon Mar 18 20:39:15 2019 UTC |
2 | C:\AraxisMergeCompare\Pri_re\IMAG_Source\VISA\Java\ViewerImagingRouter\main\src\java\gov\va\med\imaging\viewer\router\commands | GetQAReviewReportDataCommandImpl.java | Tue Mar 19 12:04:10 2019 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 3 | 234 |
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: Mar 28, 2017 | |
6 | Developer: DNS tjahjb | |
7 | Descript ion: | |
8 | ||
9 | ;; +-------- ---------- ---------- ---------- ---------- ---------- ---------- + | |
10 | ;; Property of the US Government . | |
11 | ;; No permis sion to co py or redi stribute t his softwa re is give n. | |
12 | ;; Use of un released v ersions of this soft ware requi res the us er | |
13 | ;; to execu te a writt en test ag reement wi th the Vis tA Imaging | |
14 | ;; Developm ent Office of the De partment o f Veterans Affairs, | |
15 | ;; telephon e (301) 73 4-0100. | |
16 | ;; | |
17 | ;; The Food and Drug A dministrat ion classi fies this software a s | |
18 | ;; a Class I I medical device. A s such, it may not b e changed | |
19 | ;; in any wa y. Modifi cations to this soft ware may r esult in a n | |
20 | ;; adulterat ed medical device un der 21CFR8 20, the us e of which | |
21 | ;; is consid ered to be a violati on of US F ederal Sta tutes. | |
22 | ;; +-------- ---------- ---------- ---------- ---------- ---------- ---------- + | |
23 | ||
24 | */ | |
25 | package go v.va.med.i maging.vie wer.router .commands; | |
26 | ||
27 | ||
28 | import gov .va.med.Ro utingToken ; | |
29 | import gov .va.med.im aging.core .interface s.exceptio ns.Connect ionExcepti on; | |
30 | import gov .va.med.im aging.core .interface s.exceptio ns.MethodE xception; | |
31 | import gov .va.med.im aging.view er.datasou rce.Viewer ImagingDat aSourceSpi ; | |
32 | ||
33 | /** | |
34 | * @author DNS tjahjb | |
35 | * | |
36 | */ | |
37 | public cla ss GetQARe viewReport DataComman dImpl | |
38 | extends Ab stractView erImagingD ataSourceC ommandImpl <String> | |
39 | { | |
40 | pr ivate stat ic final l ong serial VersionUID = 9277977 7763928564 9L; | |
41 | ||
42 | pr ivate fina l RoutingT oken routi ngToken; | |
43 | pr ivate fina l String f lags; | |
44 | pr ivate fina l String f romDate; | |
45 | pr ivate fina l String t hroughDate ; | |
46 | pr ivate fina l String m que; | |
47 | ||
48 | pr ivate stat ic final S tring SPI_ METHOD_NAM E = "getQA ReviewRepo rtData"; | |
49 | ||
50 | pu blic GetQA ReviewRepo rtDataComm andImpl(Ro utingToken routingTo ken, | |
51 | String flags, St ring fromD ate, Strin g throughD ate, Strin g mque) | |
52 | { | |
53 | this .routingTo ken = rout ingToken; | |
54 | this .flags = f lags; | |
55 | this .fromDate = fromDate ; | |
56 | this .throughDa te = throu ghDate; | |
57 | this .mque = mq ue; | |
58 | } | |
59 | ||
60 | @O verride | |
61 | pr otected St ring getCo mmandResul t(ViewerIm agingDataS ourceSpi s pi) | |
62 | th rows Conne ctionExcep tion, Meth odExceptio n | |
63 | { | |
64 | retu rn spi.get QAReviewRe portData(g etRoutingT oken(), ge tFlags(), getFromDat e(), getTh roughDate( ), getMque ()); | |
65 | } | |
66 | ||
67 | @O verride | |
68 | pu blic Routi ngToken ge tRoutingTo ken() | |
69 | { | |
70 | retu rn routing Token; | |
71 | } | |
72 | ||
73 | @O verride | |
74 | pr otected St ring getSi teNumber() | |
75 | { | |
76 | retu rn getRout ingToken() .getReposi toryUnique Id(); | |
77 | } | |
78 | ||
79 | @O verride | |
80 | pr otected Cl ass<Viewer ImagingDat aSourceSpi > getSpiCl ass() | |
81 | { | |
82 | retu rn ViewerI magingData SourceSpi. class; | |
83 | } | |
84 | ||
85 | @O verride | |
86 | pr otected St ring getSp iMethodNam e() | |
87 | { | |
88 | retu rn SPI_MET HOD_NAME; | |
89 | } | |
90 | ||
91 | @O verride | |
92 | pr otected Ob ject[] get SpiMethodP arameters( ) | |
93 | { | |
94 | retu rn new Obj ect[]{getR outingToke n(), getFl ags(), get FromDate() , getThrou ghDate(), getMque()} ; | |
95 | } | |
96 | ||
97 | @O verride | |
98 | pr otected Cl ass<?>[] g etSpiMetho dParameter Types() | |
99 | { | |
100 | retu rn new Cla ss<?>[]{Ro utingToken .class, St ring.class , String.c lass, Stri ng.class, String.cla ss}; | |
101 | } | |
102 | ||
103 | pu blic Strin g getFlags () { | |
104 | retu rn flags; | |
105 | } | |
106 | ||
107 | pu blic Strin g getFromD ate() { | |
108 | retu rn fromDat e; | |
109 | } | |
110 | ||
111 | pu blic Strin g getThrou ghDate() { | |
112 | retu rn through Date; | |
113 | } | |
114 | ||
115 | pu blic Strin g getMque( ) { | |
116 | retu rn mque; | |
117 | } | |
118 | ||
119 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.