37680. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 1/17/2019 10:54:40 AM 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.

37680.1 Files compared

# Location File Last Modified
1 v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\oit\oed\vaww UnattendedNameSpaceContext.java Wed Jan 16 16:07:52 2019 UTC
2 v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\oit\oed\vaww UnattendedNameSpaceContext.java Wed Jan 16 20:18:54 2019 UTC

37680.2 Comparison summary

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

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

37680.4 Active regular expressions

No regular expressions were active.

37680.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           .         ";
  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   }