37302. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/12/2018 3:21:08 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.

37302.1 Files compared

# Location File Last Modified
1 CareT v1_iter1_build_2.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\oit\oed\vaww UnattendedNameSpaceContext.java Mon Apr 9 18:52:38 2018 UTC
2 CareT v1_iter1_build_2.zip\core\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\oit\oed\vaww UnattendedNameSpaceContext.java Wed Apr 11 19:11:19 2018 UTC

37302.2 Comparison summary

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

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

37302.4 Active regular expressions

No regular expressions were active.

37302.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:// DNS . 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   }