363. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/13/2018 10:35:30 AM 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.

363.1 Files compared

# Location File Last Modified
1 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\rule RuleParameters.java Fri Dec 7 17:36:18 2018 UTC
2 v12.5_iter_7_build 51.zip\TRM_Upgrade\src\main\java\gov\va\med\fw\rule RuleParameters.java Wed Dec 12 19:46:45 2018 UTC

363.2 Comparison summary

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

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

363.4 Active regular expressions

No regular expressions were active.

363.5 Comparison detail

  1   /********* ********** ********** ********** ********** ********** *********
  2    * Copyrii ght 2004 V HA. All ri ghts reser ved
  3    ********* ********** ********** ********** ********** ********** *********/
  4   package go v.va.med.f w.rule;
  5  
  6   // Java cl asses
  7   import jav a.util.Map ;
  8  
  9   // Library  classes
  10  
  11   // Framewo rk classes
  12  
  13   // EDB cla sses
  14  
  15   /**
  16    * Provide s a generi c wrapper  interface  to contain  a list of  rule para meters.
  17    * Each ru le paramet er must ha ve a uniqu e input an d output n ame so tha t ILOG can
  18    * bind ea ch rule pa ramter to  a unique p arameter n ame in ILO G rule eng ine
  19    * agenda.
  20    * 
  21    * Project : Framewor k
  22    * 
  23    * @author   DN S
  24    * @versio n 1.0
  25    */
  26   public int erface Rul eParameter s extends  RuleParame ter {
  27  
  28           /* *
  29            *  Returns a  map conta ining rule  parameter s
  30            *  
  31            *  @return R eturns the  parameter s.
  32            * /
  33           pu blic Map<S tring, Rul eParameter > getRuleP arameters( );
  34  
  35           /* *
  36            *  Returns a  rule para meter clas s by its n ame
  37            *  
  38            *  @param na me
  39            *              A rule p arameter's  input nam e
  40            *  @return A  rule para meter iden tified by  its input  name
  41            * /
  42           pu blic RuleP arameter g etRulePara meter(Stri ng name);
  43  
  44           /* *
  45            *  A derived  class mus t populate  an intern al list of  </br> rul e paramete rs
  46            *  with the  appropriat e rule dat a</br>
  47            *  
  48            *  @param da ta
  49            *              A rule d ata object  encapsula ting rule- related da ta
  50            * /
  51           pu blic void  initialize RuleParmet ers(RuleDa taAware da ta) throws  RuleConfi gurationEx ception;
  52  
  53           /* *
  54            *  A derived  class mus t populate  an intern al list of  </br> rul e paramete rs
  55            *  with the  appropriat e rule dat a in a map
  56            *  
  57            *  @param da ta
  58            *              A rule d ata object  encapsula ting rule- related da ta
  59            * /
  60           pu blic void  initialize RuleParmet ers(Map da ta) throws  RuleConfi gurationEx ception;
  61   }