6. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/21/2017 10:24:32 AM Central 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.

6.1 Files compared

# Location File Last Modified
1 JLV_2.5.3.0.2_cif.zip\JLV_2.5.3.0.2_src\JLV\scripts _Events.groovy Wed Jun 7 15:11:32 2017 UTC
2 JLV_2.5.3.0.2_cif.zip\JLV_2.5.3.0.2_src\JLV\scripts _Events.groovy Wed Jun 21 14:27:16 2017 UTC

6.2 Comparison summary

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

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

6.4 Active regular expressions

No regular expressions were active.

6.5 Comparison detail

  1   import gra ils.util.E nvironment
  2   import gra ils.util.H olders
  3   import org .apache.ca talina.con nector.Con nector
  4  
  5   eventConfi gureTomcat   = { org. apache.cat alina.star tup.Tomcat  tomcat ->
  6  
  7           if  (Environm ent.getCur rent() ==  Environmen t.DEVELOPM ENT) {
  8                println  "Attemptin g to start  SSL liste ner"
  9                def keys toreFile =  "/certs/a pp26pp.jks "
  10                def keys torePass =  "changeit "
  11                def trus tstoreFile  = "/certs /cacerts_n c.jks"
  12                def trus tstorePass  = "change it"
  13  
  14                def conn ector = ne w Connecto r("org.apa che.coyote .http11.Ht tp11NioPro tocol")
  15                  connector. port =  REDACTED
  16                connecto r.protocol  = "org.ap ache.coyot e.http11.H ttp11NioPr otocol"
  17                connecto r.setPrope rty("maxSp areThreads ", "75")
  18                connecto r.setPrope rty("minSp areThreads ", "5")
  19                connecto r.setPrope rty("SSLEn abled", "t rue")
  20                connecto r.setPrope rty("schem e", "https ")
  21                connecto r.setPrope rty("secur e", "true" )
  22                connecto r.setPrope rty("enabl eLookups",  "false")
  23                connecto r.setPrope rty("clien tAuth", "w ant")
  24                connecto r.setPrope rty("sslPr otocol", " TLS")
  25                connecto r.setPrope rty("keyst oreFile",  keystoreFi le)
  26                connecto r.setPrope rty("keyst oreType",  "JKS")
  27                connecto r.setPrope rty("keyst orePass",  keystorePa ss)
  28                connecto r.setPrope rty("trust storeFile" , truststo reFile)
  29                connecto r.setPrope rty("trust storeType" , "JKS")
  30                connecto r.setPrope rty("trust storePass" , truststo rePass)
  31                connecto r.setPrope rty("SSLVe rifyClient ", "option al")
  32                connecto r.setPrope rty("SSLVe rifyDepth" , "2")
  33  
  34                tomcat.s ervice.add Connector  connector
  35           }
  36   }