64. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/20/2017 5:56:06 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.

64.1 Files compared

# Location File Last Modified
1 Genisis_2.0_v6_bld6.zip\Source Code\TS\Service\testing\jena-query-tool\src\main\java\gov\va\genisis2 QueryModel.java Thu Dec 14 19:57:17 2017 UTC
2 Genisis_2.0_v6_bld6.zip\Source Code\TS\Service\testing\jena-query-tool\src\main\java\gov\va\genisis2 QueryModel.java Wed Dec 20 13:56:55 2017 UTC

64.2 Comparison summary

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

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

64.4 Active regular expressions

No regular expressions were active.

64.5 Comparison detail

  1   package go v.va.genis is2;
  2  
  3   public cla ss QueryMo del {
  4  
  5           pr otected St ring endpo intURL;
  6           pr otected St ring query ;
  7           pr otected St ring resul ts;
  8           pr otected St ring curlE ndpointURL ;
  9  
  10           pu blic Query Model() {
  11                     endpointUR L = "http: // IP                 /ds/sparql ";
  12                    quer y = "PREFI X rdfs:<ht tp://www.w 3.org/2000 /01/rdf-sc hema#>\n"  + "\n" + " select * w here {\n"
  13                                      + "  ?o  rdfs:label  ?label .\ n" + "  FI LTER CONTA INS(?label , \"Diabet es\")\n" +  "}\n" + " limit 100" ;
  14                    resu lts = "";
  15                    curl EndpointUR L = "";
  16           }
  17  
  18           pu blic Strin g getEndpo intURL() {
  19                    retu rn endpoin tURL;
  20           }
  21  
  22           pu blic void  setEndpoin tURL(Strin g endpoint URL) {
  23                    this .endpointU RL = endpo intURL;
  24           }
  25  
  26           pu blic Strin g getQuery () {
  27                    retu rn query;
  28           }
  29  
  30           pu blic void  setQuery(S tring quer y) {
  31                    this .query = q uery;
  32           }
  33  
  34           pu blic Strin g getResul ts() {
  35                    retu rn results ;
  36           }
  37  
  38           pu blic void  setResults (String re sults) {
  39                    this .results =  results;
  40           }
  41           
  42           pu blic Strin g getCurlE ndpointURL () {
  43                    retu rn curlEnd pointURL;
  44           }
  45           
  46           pu blic void  setCurlEnd pointURL(S tring curl EndpointUR L) {
  47                    this .curlEndpo intURL = c urlEndpoin tURL;
  48           }
  49  
  50   }