44477. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 8/1/2019 1:42:43 PM Eastern 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.

44477.1 Files compared

# Location File Last Modified
1 JLV_2_8_0_0_0_July_2019.zip\JLV_2_8_0_0_0_July_2019\jMeadows\src\main\java\gov\va\med\jmeadows\dataservicehandler DataServiceHandler.java Mon Jul 8 19:18:44 2019 UTC
2 JLV_2_8_0_0_0_July_2019.zip\JLV_2_8_0_0_0_July_2019\jMeadows\src\main\java\gov\va\med\jmeadows\dataservicehandler DataServiceHandler.java Wed Jul 31 18:41:36 2019 UTC

44477.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 204
Changed 1 2
Inserted 0 0
Removed 0 0

44477.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

44477.4 Active regular expressions

No regular expressions were active.

44477.5 Comparison detail

  1   /**
  2    * Janus 4 .0 (c)
  3    * Copyrig ht (c) 201 1 Hawaii R esource Gr oup LLC. A ll Rights  Reserved.
  4    * Develop ed for the  Pacific T elehealth  & Technolo gy Hui and  the Pacif ic Joint I nformation  Technolog y Center
  5    * Contrib utors:
  6    *     Hon orable Sen ator Danie l K. Inouy e
  7    *     VA  Pacific Is lands Heal th Care Sy stem
  8    *     Tri pler Army  Medical Ce nter
  9    */
  10    
  11    
  12   package go v.va.med.j meadows.da taserviceh andler;
  13  
  14   import gov .va.med.jm eadows.com mon.AppCon fig;
  15  
  16   import jav ax.xml.nam espace.QNa me;
  17  
  18   /**
  19    *
  20    * @author   DNS
  21    */
  22   public abs tract clas s DataServ iceHandler  {
  23  
  24       protec ted static  final App Config APP _CONFIG =  AppConfig. getInstanc e();
  25       
  26       protec ted String  serviceUR L;
  27       protec ted String  serviceNa me;
  28       protec ted String  serviceNa mespace;
  29       protec ted QName  qServiceNa me;
  30       protec ted String  serviceUs ername;
  31       protec ted String  servicePa ssword;
  32       protec ted int se rviceReque stTimeoutM S;
  33       protec ted int se rviceConne ctionTimeo utMS;
  34  
  35       public  DataServi ceHandler( ) {
  36           se rviceConne ctionTimeo utMS = APP _CONFIG.ge tConnectio nTimeoutMS ();
  37           se rviceReque stTimeoutM S = APP_CO NFIG.getRe questTimeo utMS();
  38       }
  39  
  40       public  String ge tServiceUR L() {
  41           re turn servi ceURL;
  42       }
  43  
  44       public  void setS erviceURL( String ser viceURL) {
  45           th is.service URL = serv iceURL;
  46       }
  47  
  48       public  String ge tServiceNa me() {
  49           re turn servi ceName;
  50       }
  51  
  52       public  void setS erviceName (String se rviceName)  {
  53           th is.service Name = ser viceName;
  54       }
  55  
  56       public  String ge tServiceNa mespace()  {
  57           re turn servi ceNamespac e;
  58       }
  59  
  60       public  void setS erviceName space(Stri ng service Namespace)  {
  61           th is.service Namespace  = serviceN amespace;
  62       }
  63  
  64       public  QName get qServiceNa me() {
  65           re turn qServ iceName;
  66       }
  67  
  68       public  void setq ServiceNam e(QName qS erviceName ) {
  69           th is.qServic eName = qS erviceName ;
  70       }
  71  
  72       public  String ge tServiceUs ername() {
  73           re turn servi ceUsername ;
  74       }
  75  
  76       public  void setS erviceUser name(Strin g serviceU sername) {
  77           th is.service Username =  serviceUs ername;
  78       }
  79  
  80       public  String ge tServicePa ssword() {
  81           re turn servi cePassword ;
  82       }
  83  
  84       public  void setS ervicePass word(Strin g serviceP assword) {
  85           th is.service Password =  servicePa ssword;
  86       }
  87  
  88       public  int getSe rviceReque stTimeoutM S() {
  89           re turn servi ceRequestT imeoutMS;
  90       }
  91  
  92       public  void setS erviceRequ estTimeout MS(int ser viceReques tTimeoutMS ) {
  93           th is.service RequestTim eoutMS = s erviceRequ estTimeout MS;
  94       }
  95  
  96       public  int getSe rviceConne ctionTimeo utMS() {
  97           re turn servi ceConnecti onTimeoutM S;
  98       }
  99  
  100       public  void setS erviceConn ectionTime outMS(int  serviceCon nectionTim eoutMS) {
  101           th is.service Connection TimeoutMS  = serviceC onnectionT imeoutMS;
  102       }
  103   }