22449. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/2/2019 9:48:59 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.

22449.1 Files compared

# Location File Last Modified
1 JLV_JLV 2_7_2_0_0.zip\JLV_Src\JLVQoS\src\main\java\gov\va\med\jmeadows\dataservicehandler DataServiceHandler.java Wed Mar 20 21:43:22 2019 UTC
2 JLV_JLV 2_7_2_0_0.zip\JLV_Src\JLVQoS\src\main\java\gov\va\med\jmeadows\dataservicehandler DataServiceHandler.java Tue Apr 2 13:30:30 2019 UTC

22449.2 Comparison summary

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

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

22449.4 Active regular expressions

No regular expressions were active.

22449.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    * @author   DNS
  20    */
  21   public abs tract clas s DataServ iceHandler
  22   {
  23       protec ted String  serviceUR L;
  24       protec ted String  serviceNa me;
  25       protec ted String  serviceNa mespace;
  26       protec ted QName  qServiceNa me;
  27       protec ted String  serviceUs ername;
  28       protec ted String  servicePa ssword;
  29       protec ted int se rviceReque stTimeoutM S;
  30       protec ted int se rviceConne ctionTimeo utMS;
  31  
  32       protec ted static  final App Config APP _CONFIG =  AppConfig. getInstanc e();
  33  
  34       public  DataServi ceHandler( )
  35       {
  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       {
  42           re turn servi ceURL;
  43       }
  44  
  45       public  void setS erviceURL( String ser viceURL)
  46       {
  47           th is.service URL = serv iceURL;
  48       }
  49  
  50       public  String ge tServiceNa me()
  51       {
  52           re turn servi ceName;
  53       }
  54  
  55       public  void setS erviceName (String se rviceName)
  56       {
  57           th is.service Name = ser viceName;
  58       }
  59  
  60       public  String ge tServiceNa mespace()
  61       {
  62           re turn servi ceNamespac e;
  63       }
  64  
  65       public  void setS erviceName space(Stri ng service Namespace)
  66       {
  67           th is.service Namespace  = serviceN amespace;
  68       }
  69  
  70       public  QName get qServiceNa me()
  71       {
  72           re turn qServ iceName;
  73       }
  74  
  75       public  void setq ServiceNam e(QName qS erviceName )
  76       {
  77           th is.qServic eName = qS erviceName ;
  78       }
  79  
  80       public  String ge tServiceUs ername()
  81       {
  82           re turn servi ceUsername ;
  83       }
  84  
  85       public  void setS erviceUser name(Strin g serviceU sername)
  86       {
  87           th is.service Username =  serviceUs ername;
  88       }
  89  
  90       public  String ge tServicePa ssword()
  91       {
  92           re turn servi cePassword ;
  93       }
  94  
  95       public  void setS ervicePass word(Strin g serviceP assword)
  96       {
  97           th is.service Password =  servicePa ssword;
  98       }
  99  
  100       public  int getSe rviceReque stTimeoutM S()
  101       {
  102           re turn servi ceRequestT imeoutMS;
  103       }
  104  
  105       public  void setS erviceRequ estTimeout MS(int ser viceReques tTimeoutMS )
  106       {
  107           th is.service RequestTim eoutMS = s erviceRequ estTimeout MS;
  108       }
  109  
  110       public  int getSe rviceConne ctionTimeo utMS()
  111       {
  112           re turn servi ceConnecti onTimeoutM S;
  113       }
  114  
  115       public  void setS erviceConn ectionTime outMS(int  serviceCon nectionTim eoutMS)
  116       {
  117           th is.service Connection TimeoutMS  = serviceC onnectionT imeoutMS;
  118       }
  119   }