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 | GetImageFilterDetailCommandImpl.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 | GetImageFilterDetailCommandImpl.java | Tue Mar 19 12:04:10 2019 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 3 | 248 |
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: Apr 23, 2018 | |
3 | * Develop er: DNS tjahjb | |
4 | */ | |
5 | package go v.va.med.i maging.vie wer.router .commands; | |
6 | ||
7 | import jav a.util.Lis t; | |
8 | ||
9 | import gov .va.med.Ro utingToken ; | |
10 | import gov .va.med.im aging.core .interface s.exceptio ns.Connect ionExcepti on; | |
11 | import gov .va.med.im aging.core .interface s.exceptio ns.MethodE xception; | |
12 | import gov .va.med.im aging.view er.busines s.ImageFil terFieldVa lue; | |
13 | import gov .va.med.im aging.view er.datasou rce.Viewer ImagingDat aSourceSpi ; | |
14 | ||
15 | /** | |
16 | * @author DNS tjahjb | |
17 | * | |
18 | */ | |
19 | public cla ss GetImag eFilterDet ailCommand Impl | |
20 | extends Ab stractView erImagingD ataSourceC ommandImpl <List<Imag eFilterFie ldValue>> | |
21 | { | |
22 | pr ivate stat ic final l ong serial VersionUID = -470391 4547363362 027L; | |
23 | ||
24 | pr ivate fina l RoutingT oken globa lRoutingTo ken; | |
25 | pr ivate Stri ng filterI en; | |
26 | pr ivate Stri ng userId; | |
27 | pr ivate Stri ng filterN ame; | |
28 | ||
29 | /* * | |
30 | * @param gl obalRoutin gToken | |
31 | * @param im ageUrns | |
32 | * / | |
33 | pu blic GetIm ageFilterD etailComma ndImpl( | |
34 | Routin gToken glo balRouting Token, | |
35 | String filterIen , | |
36 | String filterNam e, | |
37 | String userId) | |
38 | { | |
39 | supe r(); | |
40 | this .globalRou tingToken = globalRo utingToken ; | |
41 | this .setFilter Ien(filter Ien); | |
42 | this .setFilter Name(filte rName); | |
43 | this .setUserId (userId); | |
44 | } | |
45 | ||
46 | /* (non-Java doc) | |
47 | * @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get RoutingTok en() | |
48 | * / | |
49 | @O verride | |
50 | pu blic Routi ngToken ge tRoutingTo ken() | |
51 | { | |
52 | retu rn globalR outingToke n; | |
53 | } | |
54 | ||
55 | ||
56 | /* (non-Java doc) | |
57 | * @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodN ame() | |
58 | * / | |
59 | @O verride | |
60 | pr otected St ring getSp iMethodNam e() | |
61 | { | |
62 | retu rn "getIma geFilterDe tail"; | |
63 | } | |
64 | ||
65 | /* (non-Java doc) | |
66 | * @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameterTy pes() | |
67 | * / | |
68 | @O verride | |
69 | pr otected Cl ass<?>[] g etSpiMetho dParameter Types() | |
70 | { | |
71 | retu rn new Cla ss<?>[] {R outingToke n.class, S tring.clas s, String. class, Str ing.class} ; | |
72 | } | |
73 | ||
74 | /* (non-Java doc) | |
75 | * @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get SpiMethodP arameters( ) | |
76 | * / | |
77 | @O verride | |
78 | pr otected Ob ject[] get SpiMethodP arameters( ) | |
79 | { | |
80 | retu rn new Obj ect[] { | |
81 | getRouti ngToken(), | |
82 | this.get FilterIen( ), | |
83 | this.get FilterName (), | |
84 | this.get UserId()}; | |
85 | } | |
86 | ||
87 | /* (non-Java doc) | |
88 | * @see gov. va.med.ima ging.core. router.Abs tractDataS ourceComma ndImpl#get CommandRes ult(gov.va .med.imagi ng.datasou rce.Versio nableDataS ourceSpi) | |
89 | * / | |
90 | @O verride | |
91 | pr otected Li st<ImageFi lterFieldV alue> getC ommandResu lt(ViewerI magingData SourceSpi spi) | |
92 | th rows Conne ctionExcep tion, Meth odExceptio n | |
93 | { | |
94 | retu rn spi.get ImageFilte rDetail( | |
95 | getRouti ngToken(), | |
96 | getFilte rIen(), | |
97 | getFilte rName(), | |
98 | getUserI d()); | |
99 | } | |
100 | ||
101 | pu blic Strin g getFilte rIen() { | |
102 | retu rn filterI en; | |
103 | } | |
104 | ||
105 | pu blic void setFilterI en(String filterIen) { | |
106 | this .filterIen = filterI en; | |
107 | } | |
108 | ||
109 | pu blic Strin g getUserI d() { | |
110 | retu rn userId; | |
111 | } | |
112 | ||
113 | pu blic void setUserId( String use rId) { | |
114 | this .userId = userId; | |
115 | } | |
116 | ||
117 | pu blic Strin g getFilte rName() { | |
118 | retu rn filterN ame; | |
119 | } | |
120 | ||
121 | pu blic void setFilterN ame(String filterNam e) { | |
122 | this .filterNam e = filter Name; | |
123 | } | |
124 | ||
125 | ||
126 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.