79. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/9/2018 4:51:59 PM Eastern 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.

79.1 Files compared

# Location File Last Modified
1 Caregivers_Tool-v1_iter1.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\oit\oed\vaww UnattendedNameSpaceContext.java Mon Jan 8 17:30:46 2018 UTC
2 Caregivers_Tool-v1_iter1.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\oit\oed\vaww UnattendedNameSpaceContext.java Tue Jan 9 01:21:47 2018 UTC

79.2 Comparison summary

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

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

79.4 Active regular expressions

No regular expressions were active.

79.5 Comparison detail

  1   package go v.va.oit.o ed.vaww;
  2  
  3   import jav a.util.Ite rator;
  4  
  5   import jav ax.xml.nam espace.Nam espaceCont ext;
  6  
  7   public cla ss Unatten dedNameSpa ceContext  implements  Namespace Context {
  8           
  9           pr ivate stat ic String  CTX = "ctx ";
  10           pr ivate stat ic String  IDM = "idm ";
  11           pr ivate stat ic String  XSI = "xsi ";
  12           pr ivate stat ic String  CTX_URL =  "urn:hl7-o rg:v3";
  13           pr ivate stat ic String  XSI_URL =  "http://ww w.w3.org/2 001/XMLSch ema-instan ce";
  14           pr ivate stat ic String  IDM_URL =  "http:// URL           . DNS ";
  15           
  16           @O verride
  17           pu blic Strin g getPrefi x(String n amespaceUR I) {
  18                    thro w new Unsu pportedOpe rationExce ption();
  19           }
  20           
  21           @O verride
  22           pu blic Itera tor<String > getPrefi xes(String  namespace URI) {
  23                    thro w new Unsu pportedOpe rationExce ption();
  24           }
  25           
  26           @O verride
  27           pu blic Strin g getNames paceURI(St ring prefi x) {
  28                    if ( CTX.equals (prefix))  {
  29                             return  CTX_URL;
  30                    }
  31                    if ( IDM.equals (prefix)){
  32                             return  IDM_URL;
  33                    }
  34                    if ( XSI.equals (prefix))  {
  35                             return  XSI_URL;
  36                    }
  37                    thro w new Ille galArgumen tException (prefix);
  38           }
  39   }