367. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/5/2017 12:06:49 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.

367.1 Files compared

# Location File Last Modified
1 IV-eHMP_CIF.zip\IMAG_Source\VISA\Java\SiteServiceWebApp\main\src\java\gov\va\med\imaging\exchange\siteservice\commands AbstractSiteServiceCommand.java Mon Dec 4 21:35:22 2017 UTC
2 IV-eHMP_CIF.zip\IMAG_Source\VISA\Java\SiteServiceWebApp\main\src\java\gov\va\med\imaging\exchange\siteservice\commands AbstractSiteServiceCommand.java Mon Dec 4 22:05:48 2017 UTC

367.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 196
Changed 2 4
Inserted 0 0
Removed 0 0

367.3 Comparison options

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

367.4 Active regular expressions

No regular expressions were active.

367.5 Comparison detail

  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  5, 2012
  6     Site Nam e:  Washin gton OI Fi eld Office , Silver S pring, MD
  7       Developer:          
WERFEJ
  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.exc hange.site service.co mmands;
  27  
  28   import jav a.util.Has hMap;
  29   import jav a.util.Map ;
  30  
  31   import org .apache.lo gging.log4 j.Level;
  32   import org .apache.lo gging.log4 j.core.con fig.Config urator;
  33  
  34   import gov .va.med.im aging.exch ange.sites ervice.Sit eServiceCo ntext;
  35   import gov .va.med.im aging.exch ange.sites ervice.Sit eServiceFa cadeRouter ;
  36   import gov .va.med.im aging.web. commands.A bstractWeb serviceCom mand;
  37   import gov .va.med.im aging.web. commands.W ebserviceI nputParame terTransac tionContex tField;
  38  
  39   /**
  40    * @author         
WERFEJ
  41    *
  42    */
  43   public abs tract clas s Abstract SiteServic eCommand<D , E extend s Object>
  44   extends Ab stractWebs erviceComm and<D, E>
  45   {
  46  
  47           /* *
  48            *  @param me thodName
  49            * /
  50           pu blic Abstr actSiteSer viceComman d(String m ethodName)
  51           {
  52                    supe r(methodNa me);
  53                    // t urn down t he logging  for the s ite servic e stuff
  54                    Conf igurator.s etRootLeve l(Level.WA RN);
  55           }
  56  
  57           @O verride
  58           pr otected Si teServiceF acadeRoute r getRoute r()
  59           {
  60                    retu rn SiteSer viceContex t.getSiteS erviceFaca deRouter() ;
  61           }
  62  
  63           @O verride
  64           pr otected St ring getWe pAppName()
  65           {
  66                    retu rn "Site S ervice Web App";
  67           }
  68  
  69           @O verride
  70           pu blic Strin g getInter faceVersio n()
  71           {
  72                    retu rn "V2";
  73           }
  74           
  75           @O verride
  76           pr otected Ma p<Webservi ceInputPar ameterTran sactionCon textField,  String> g etTransact ionContext Fields()
  77           {
  78                    Map< Webservice InputParam eterTransa ctionConte xtField, S tring> tra nsactionCo ntextField s = 
  79                             new Ha shMap<Webs erviceInpu tParameter Transactio nContextFi eld, Strin g>();
  80                    
  81                    tran sactionCon textFields .put(Webse rviceInput ParameterT ransaction ContextFie ld.quality , transact ionContext NaValue);
  82                    tran sactionCon textFields .put(Webse rviceInput ParameterT ransaction ContextFie ld.urn, tr ansactionC ontextNaVa lue);
  83                    tran sactionCon textFields .put(Webse rviceInput ParameterT ransaction ContextFie ld.queryFi lter, tran sactionCon textNaValu e);
  84                    tran sactionCon textFields .put(Webse rviceInput ParameterT ransaction ContextFie ld.patient Id, transa ctionConte xtNaValue) ;
  85  
  86                    retu rn transac tionContex tFields;
  87           }
  88  
  89           @O verride
  90           pu blic void  setAdditio nalTransac tionContex tFields()
  91           {
  92                    
  93           }
  94           
  95           @O verride
  96           pr otected St ring getRe questTypeA dditionalD etails()
  97           {
  98                    retu rn null;
  99           }
  100   }