38. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 3/29/2017 4:53:21 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.

38.1 Files compared

# Location File Last Modified
1 CTT-DM CIF Submission.zip\code\ISAAC\hl7-messaging\src\main\java\gov\vha\isaac\ochre\access\maint\deployment\dto DependentSubsetRule.java Fri Mar 3 16:20:18 2017 UTC
2 CTT-DM CIF Submission.zip\code\ISAAC\hl7-messaging\src\main\java\gov\vha\isaac\ochre\access\maint\deployment\dto DependentSubsetRule.java Wed Mar 29 15:01:05 2017 UTC

38.2 Comparison summary

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

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

38.4 Active regular expressions

No regular expressions were active.

38.5 Comparison detail

  1   package go v.vha.isaa c.ochre.ac cess.maint .deploymen t.dto;
  2  
  3   import jav a.io.Seria lizable;
  4  
  5   /**
  6    * @author   DNS
  7    * 
  8    */
  9   public cla ss Depende ntSubsetRu le impleme nts Serial izable
  10   {
  11           pr otected St ring subse tName;
  12           pr otected St ring relat ionshipNam e;
  13  
  14           /* *
  15            *  @param su bsetName
  16            *  @param re lationship Name
  17            * /
  18           pu blic Depen dentSubset Rule(Strin g subsetNa me, String  relations hipName) {
  19                    this .subsetNam e = subset Name;
  20                    this .relations hipName =  relationsh ipName;
  21           }
  22  
  23           /* *
  24            *  @return R eturns the  subsetNam e.
  25            * /
  26           pu blic Strin g getSubse tName() {
  27                    retu rn subsetN ame;
  28           }
  29  
  30           /* *
  31            *  @param su bsetName
  32            *              The subs etName to  set.
  33            * /
  34           pu blic void  setSubsetN ame(String  subsetNam e) {
  35                    this .subsetNam e = subset Name;
  36           }
  37  
  38           /* *
  39            *  @return R eturns the  relations hipName.
  40            * /
  41           pu blic Strin g getRelat ionshipNam e() {
  42                    retu rn relatio nshipName;
  43           }
  44  
  45           /* *
  46            *  @param re lationship Name
  47            *              The rela tionshipNa me to set.
  48            * /
  49           pu blic void  setRelatio nshipName( String rel ationshipN ame) {
  50                    this .relations hipName =  relationsh ipName;
  51           }
  52   }