Produced by Araxis Merge on 12/5/2017 12:06:37 PM Central Standard 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 | IV-eHMP_CIF.zip\IMAG_Source\VISA\Java\CoreRouter\main\src\java\gov\va\med\imaging\core\router\commands\dicom\importer | GetOriginIndexListCommandImpl.java | Mon Dec 4 21:35:34 2017 UTC |
| 2 | IV-eHMP_CIF.zip\IMAG_Source\VISA\Java\CoreRouter\main\src\java\gov\va\med\imaging\core\router\commands\dicom\importer | GetOriginIndexListCommandImpl.java | Mon Dec 4 21:58:28 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 206 |
| Changed | 1 | 2 |
| 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 | * Package : MAG - Vi stA Imagin g | |
| 3 | * WARNING : Per VHA Directive 2004-038, this routi ne should not be mod ified. | |
| 4 | * Date Cr eated: May 10, 2010 | |
| 5 | * Site Na me: Washi ngton OI F ield Offic e, Silver Spring, MD | |
| 6 | * @author
|
|
| 7 | * @versio n 1.0 | |
| 8 | * | |
| 9 | * ------- ---------- ---------- ---------- ---------- ---------- ------- | |
| 10 | * Propert y of the U S Governme nt. | |
| 11 | * No perm ission to copy or re distribute this soft ware is gi ven. | |
| 12 | * Use of unreleased versions of this so ftware req uires the user | |
| 13 | * to exec ute a writ ten test a greement w ith the Vi stA Imagin g | |
| 14 | * Develop ment Offic e of the D epartment of Veteran s Affairs, | |
| 15 | * telepho ne (301) 7 34-0100. | |
| 16 | * | |
| 17 | * The Foo d and Drug Administr ation clas sifies thi s software as | |
| 18 | * a Class II medica l device. As such, it may not be change d | |
| 19 | * in any way. Modi fications to this so ftware may result in an | |
| 20 | * adulter ated medic al device under 21CF R820, the use of whi ch | |
| 21 | * is cons idered to be a viola tion of US Federal S tatutes. | |
| 22 | * ------- ---------- ---------- ---------- ---------- ---------- ------- | |
| 23 | */ | |
| 24 | package g ov.va.med. imaging.co re.router. commands.d icom.impor ter; | |
| 25 | ||
| 26 | import ja va.util.Da te; | |
| 27 | import go v.va.med.i maging.*; | |
| 28 | import go v.va.med.i maging.cor e.interfac es.excepti ons.*; | |
| 29 | import go v.va.med.i maging.dat asource.*; | |
| 30 | import go v.va.med.i maging.cor e.interfac es.router. Command; | |
| 31 | import go v.va.med.i maging.cor e.interfac es.router. Asynchrono usCommandR esultListe ner; | |
| 32 | import go v.va.med.i maging.cor e.router.A bstractDat aSourceCom mandImpl; | |
| 33 | import ja vax.annota tion.Gener ated; | |
| 34 | ||
| 35 | @Suppress Warnings(" unused") | |
| 36 | public cl ass GetOri ginIndexLi stCommandI mpl | |
| 37 | extends A bstractDat aSourceCom mandImpl<j ava.util.L ist<gov.va .med.imagi ng.exchang e.business .dicom.Ori ginIndex>, DicomImpor terDataSou rceSpi> | |
| 38 | { | |
| 39 | pr ivate fina l static l ong serial VersionUID = 1L; | |
| 40 | ||
| 41 | pr ivate fina l gov.va.m ed.Routing Token rout ingToken; | |
| 42 | ||
| 43 | pu blic GetOr iginIndexL istCommand Impl( | |
| 44 | gov.va .med.Routi ngToken ro utingToken | |
| 45 | ) | |
| 46 | { | |
| 47 | this .routingTo ken = rout ingToken; | |
| 48 | } | |
| 49 | ||
| 50 | @O verride | |
| 51 | pr otected ja va.util.Li st<gov.va. med.imagin g.exchange .business. dicom.Orig inIndex> g etCommandR esult(Dico mImporterD ataSourceS pi spi) | |
| 52 | th rows Conne ctionExcep tion, Meth odExceptio n | |
| 53 | { | |
| 54 | return spi.getOr iginIndexL ist( | |
| 55 | routingTok en | |
| 56 | ); | |
| 57 | } | |
| 58 | ||
| 59 | @O verride | |
| 60 | pu blic gov.v a.med.Rout ingToken g etRoutingT oken() | |
| 61 | { | |
| 62 | retu rn routing Token; | |
| 63 | } | |
| 64 | ||
| 65 | @O verride | |
| 66 | pr otected St ring getSi teNumber() | |
| 67 | { | |
| 68 | retu rn getRout ingToken() .getReposi toryUnique Id(); | |
| 69 | } | |
| 70 | ||
| 71 | @O verride | |
| 72 | pr otected Cl ass<DicomI mporterDat aSourceSpi > getSpiCl ass() | |
| 73 | { | |
| 74 | retu rn DicomIm porterData SourceSpi. class; | |
| 75 | } | |
| 76 | ||
| 77 | @O verride | |
| 78 | pr otected St ring getSp iMethodNam e() | |
| 79 | { | |
| 80 | retu rn "getOri ginIndexLi st"; | |
| 81 | } | |
| 82 | ||
| 83 | @O verride | |
| 84 | pr otected Cl ass<?>[] g etSpiMetho dParameter Types() | |
| 85 | { | |
| 86 | retu rn new Cla ss<?> [] { | |
| 87 | gov.va.m ed.Routing Token.clas s | |
| 88 | }; | |
| 89 | } | |
| 90 | ||
| 91 | @O verride | |
| 92 | pr otected Ob ject[] get SpiMethodP arameters( ) | |
| 93 | { | |
| 94 | retu rn new Obj ect [] { | |
| 95 | routingT oken | |
| 96 | }; | |
| 97 | } | |
| 98 | ||
| 99 | @O verride | |
| 100 | pr otected ja va.util.Li st<gov.va. med.imagin g.exchange .business. dicom.Orig inIndex> p ostProcess Result(jav a.util.Lis t<gov.va.m ed.imaging .exchange. business.d icom.Origi nIndex> re sult) | |
| 101 | { | |
| 102 | retu rn result; | |
| 103 | } | |
| 104 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.